{
  "openapi": "3.0.0",
  "info": {
    "title": "CISCO-VLAN-MEMBERSHIP-MIB MIB API",
    "version": "1.0.0",
    "description": "The MIB module for the management of the VLAN\n    Membership within the frame  work of Cisco\n    VLAN Architecture, v 2.0 by Keith McCloghrie. The MIB\n    provides information on VLAN Membership Policy Servers\n    used by a device and VLAN membership assignments of\n    non-trunk bridge ports of the device.\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-VLAN-MEMBERSHIP-MIB structure](https://jeremycohoe.github.io/cisco-ios-xe-openapi-swagger/yang-trees/CISCO-VLAN-MEMBERSHIP-MIB.html)",
    "contact": {
      "name": "Cisco DevNet",
      "url": "https://developer.cisco.com"
    },
    "x-yang-module": "CISCO-VLAN-MEMBERSHIP-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-VLAN-MEMBERSHIP-MIB:vmVmps": {
      "get": {
        "summary": "Get vmVmps data",
        "description": "Retrieve vmVmps operational data from MIB",
        "tags": [
          "CISCO-VLAN-MEMBERSHIP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "The VLAN Query Protocol (VQP) version supported on\n          the device. VQP is the protocol used to query\n          VLAN Membership Policy Server (VMPS) for VLAN\n          membership assignments of dynamic VLAN ports.\n          A VMPS provides VLAN membership policy\n          assignments based on the content of the packets\n          received on a port.",
                  "properties": {
                    "vmVmpsVQPVersion": {
                      "type": "integer",
                      "description": "The VLAN Query Protocol (VQP) version supported on\n          the device. VQP is the protocol used to query\n          VLAN Membership Policy Server (VMPS) for VLAN\n          membership assignments of dynamic VLAN ports.\n          A VMPS provides VLAN membership policy\n          assignments based on the content of the packets\n          received on a port.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "vmVmpsRetries": {
                      "type": "integer",
                      "description": "The number of retries for VQP requests to a VMPS before\n          using the next available VMPS.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "vmVmpsReconfirmInterval": {
                      "type": "integer",
                      "description": "The switch will reconfirm membership of addresses on\n          each port with VMPS periodically. This object specifies\n          the interval to perform reconfirmation. If the value is\n          set to 0, the switch does not reconfirm membership with\n          VMPS.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "vmVmpsReconfirm": {
                      "type": "string",
                      "description": "Setting this object to execute(2) causes the switch\n          to reconfirm membership of every dynamic port.\n          Reading this object always return ready(1)."
                    },
                    "vmVmpsReconfirmResult": {
                      "type": "string",
                      "description": "This object returns the result of the last request\n          that sets vmVmpsReconfirm to execute(2). The\n          semantics of the possible results are as follows:\n          \n               other(1)           - none of following\n               inProgress(2)      - reconfirm in progress\n               success(3)         - reconfirm completed successfully\n               noResponse(4)      - reconfirm failed because no\n                                    VMPS responded\n               noVmps(5)          - No VMPS configured\n               noDynamicPort(6)   - No dynamic ports configured\n               noHostConnected(7) - No hosts on dynamic ports"
                    },
                    "vmVmpsCurrent": {
                      "type": "string",
                      "description": "This is the IpAddress of the current VMPS used.",
                      "format": "inet:ipv4-address"
                    }
                  }
                },
                "example": {
                  "CISCO-VLAN-MEMBERSHIP-MIB:vmVmps": {
                    "vmVmpsVQPVersion": -2147483648,
                    "vmVmpsRetries": -2147483648,
                    "vmVmpsReconfirmInterval": -2147483648,
                    "vmVmpsReconfirm": "example-string",
                    "vmVmpsReconfirmResult": "example-string",
                    "vmVmpsCurrent": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-vmVmps",
        "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": "/vmVmps",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VLAN-MEMBERSHIP-MIB:vmMembership": {
      "get": {
        "summary": "Get vmMembership data",
        "description": "Retrieve vmMembership operational data from MIB",
        "tags": [
          "CISCO-VLAN-MEMBERSHIP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "vmMembership",
                  "properties": {
                    "vmVlanCreationMode": {
                      "type": "string",
                      "description": "This object is used to determine whether or not\n          a non-existing VLAN will be created automatically\n          by the system after assigned to a port.\n          \n          automatic(1):  a non-existing VLAN will be created\n                         automatically by the system after\n                         assigned to a port.\n          \n          manual(2):     a non-existing VLAN will not be created\n                         automatically by the system and need to be\n                         manually created by the users after assigned\n                         to a port."
                    }
                  }
                },
                "example": {
                  "CISCO-VLAN-MEMBERSHIP-MIB:vmMembership": {
                    "vmVlanCreationMode": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-vmMembership",
        "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": "/vmMembership",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VLAN-MEMBERSHIP-MIB:vmStatistics": {
      "get": {
        "summary": "Get vmStatistics data",
        "description": "Retrieve vmStatistics operational data from MIB",
        "tags": [
          "CISCO-VLAN-MEMBERSHIP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "The total number of VQP requests sent by this device\n          to all VMPS since last system re-initialization.",
                  "properties": {
                    "vmVQPQueries": {
                      "type": "integer",
                      "description": "The total number of VQP requests sent by this device\n          to all VMPS since last system re-initialization.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "vmVQPResponses": {
                      "type": "integer",
                      "description": "The number of VQP responses received by this device\n          from all VMPS since last system re-initialization.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "vmVmpsChanges": {
                      "type": "integer",
                      "description": "The number of times, since last system\n          re-initialization, the current VMPS was changed. The\n          current VMPS is changed whenever the VMPS fails to \n          response after vmVmpsRetries of a VQP request.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "vmVQPShutdown": {
                      "type": "integer",
                      "description": "The number of times, since last system\n          re-initialization, a VQP response indicates \n          'shutdown'. A 'shutdown' response is a result of \n          the membership policy configured at a VMPS\n          by the administrator.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "vmVQPDenied": {
                      "type": "integer",
                      "description": "The number of times, since last system\n          re-initialization, a VQP response indicates \n          'denied'. A 'denied' response is a result of \n          the membership policy configured at a VMPS\n          by the administrator.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "vmVQPWrongDomain": {
                      "type": "integer",
                      "description": "The number of times, since last system\n          re-initialization, a VQP response indicates wrong \n          management domain. A wrong management domain \n          response indicates that the VMPS used serves a \n          management domain that is different\n          from the device's management domain.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "vmVQPWrongVersion": {
                      "type": "integer",
                      "description": "The number of times, since last system\n          re-initialization, a VQP response indicates wrong \n          VQP version. A wrong VQP version response \n          indicates that the VMPS used supports a VQP \n          version that is different from the device's \n          VQP version.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "vmInsufficientResources": {
                      "type": "integer",
                      "description": "The number of times, since last system\n          re-initialization, a VQP response indicates \n          insufficient resources. An insufficient resources \n          response indicates that the VMPS used does not \n          have the required resources to verify the\n          membership assignment requested.",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-VLAN-MEMBERSHIP-MIB:vmStatistics": {
                    "vmVQPQueries": 0,
                    "vmVQPResponses": 0,
                    "vmVmpsChanges": 0,
                    "vmVQPShutdown": 0,
                    "vmVQPDenied": 0,
                    "vmVQPWrongDomain": 0,
                    "vmVQPWrongVersion": 0,
                    "vmInsufficientResources": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-vmStatistics",
        "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": "/vmStatistics",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VLAN-MEMBERSHIP-MIB:vmStatus": {
      "get": {
        "summary": "Get vmStatus data",
        "description": "Retrieve vmStatus operational data from MIB",
        "tags": [
          "CISCO-VLAN-MEMBERSHIP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "An indication of whether the notifications/traps\n          defined in this MIB are enabled.",
                  "properties": {
                    "vmNotificationsEnabled": {
                      "type": "boolean",
                      "description": "An indication of whether the notifications/traps\n          defined in this MIB are enabled."
                    }
                  }
                },
                "example": {
                  "CISCO-VLAN-MEMBERSHIP-MIB:vmStatus": {
                    "vmNotificationsEnabled": true
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-vmStatus",
        "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": "/vmStatus",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VLAN-MEMBERSHIP-MIB:vmVmpsTable": {
      "get": {
        "summary": "Get vmVmpsTable data",
        "description": "Retrieve vmVmpsTable operational data from MIB",
        "tags": [
          "CISCO-VLAN-MEMBERSHIP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "A table of VMPS to use. The device will use\n        the the primary VMPS by default. If the\n        device is unable to reach the primary server\n        after vmVmpsRetries retries, it uses the first\n        secondary server in the table until it runs out\n        of secondary servers, in which case it will return\n        to using the primary server. Entries in this table\n        may be created and deleted via this MIB or\n        the management console on a device.",
                  "properties": {
                    "vmVmpsEntry": {
                      "type": "array",
                      "description": "An entry (conceptual row) in the vmVmpsTable.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "vmVmpsIpAddress": {
                            "type": "string",
                            "description": "The Ip Address of the VMPS.",
                            "format": "inet:ipv4-address"
                          },
                          "vmVmpsPrimary": {
                            "type": "boolean",
                            "description": "The status of the VMPS. Setting this value\n            to true will make this VMPS the primary server\n            and make the switch use this as the current server.\n            Setting this entry to true causes other rows\n            to transition to false. Attempting to write\n            a value of false after creation will result in\n            a return of bad value. Deleting an entry whose\n            value is true will result in the first entry\n            in the table being set to true."
                          },
                          "vmVmpsRowStatus": {
                            "type": "string",
                            "description": "The status of this conceptual row.",
                            "x-yang-type": "snmpv2-tc:RowStatus"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VLAN-MEMBERSHIP-MIB:vmVmpsTable": {
                    "vmVmpsEntry": [
                      {
                        "vmVmpsIpAddress": "192.168.1.1",
                        "vmVmpsPrimary": true,
                        "vmVmpsRowStatus": "up(1)"
                      },
                      {
                        "vmVmpsIpAddress": "192.168.1.1",
                        "vmVmpsPrimary": true,
                        "vmVmpsRowStatus": "up(1)"
                      },
                      {
                        "vmVmpsIpAddress": "192.168.1.1",
                        "vmVmpsPrimary": true,
                        "vmVmpsRowStatus": "up(1)"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-vmVmpsTable",
        "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": "/vmVmpsTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VLAN-MEMBERSHIP-MIB:vmVmpsTable/vmVmpsEntry": {
      "get": {
        "summary": "Get vmVmpsEntry list",
        "description": "Retrieve list of vmVmpsEntry entries from MIB",
        "tags": [
          "CISCO-VLAN-MEMBERSHIP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An entry (conceptual row) in the vmVmpsTable.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "vmVmpsIpAddress": {
                        "type": "string",
                        "description": "The Ip Address of the VMPS.",
                        "format": "inet:ipv4-address"
                      },
                      "vmVmpsPrimary": {
                        "type": "boolean",
                        "description": "The status of the VMPS. Setting this value\n            to true will make this VMPS the primary server\n            and make the switch use this as the current server.\n            Setting this entry to true causes other rows\n            to transition to false. Attempting to write\n            a value of false after creation will result in\n            a return of bad value. Deleting an entry whose\n            value is true will result in the first entry\n            in the table being set to true."
                      },
                      "vmVmpsRowStatus": {
                        "type": "string",
                        "description": "The status of this conceptual row.",
                        "x-yang-type": "snmpv2-tc:RowStatus"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VLAN-MEMBERSHIP-MIB:vmVmpsEntry": [
                    {
                      "vmVmpsIpAddress": "192.168.1.1",
                      "vmVmpsPrimary": true,
                      "vmVmpsRowStatus": "up(1)"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-vmVmpsEntry",
        "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": "/vmVmpsTable/vmVmpsEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VLAN-MEMBERSHIP-MIB:vmVmpsTable/vmVmpsEntry={vmVmpsIpAddress}": {
      "get": {
        "summary": "Get vmVmpsEntry entry",
        "description": "Retrieve specific vmVmpsEntry entry by key from MIB",
        "tags": [
          "CISCO-VLAN-MEMBERSHIP-MIB"
        ],
        "parameters": [
          {
            "name": "vmVmpsIpAddress",
            "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": {
                    "vmVmpsIpAddress": {
                      "type": "string",
                      "description": "The Ip Address of the VMPS.",
                      "format": "inet:ipv4-address"
                    },
                    "vmVmpsPrimary": {
                      "type": "boolean",
                      "description": "The status of the VMPS. Setting this value\n            to true will make this VMPS the primary server\n            and make the switch use this as the current server.\n            Setting this entry to true causes other rows\n            to transition to false. Attempting to write\n            a value of false after creation will result in\n            a return of bad value. Deleting an entry whose\n            value is true will result in the first entry\n            in the table being set to true."
                    },
                    "vmVmpsRowStatus": {
                      "type": "string",
                      "description": "The status of this conceptual row.",
                      "x-yang-type": "snmpv2-tc:RowStatus"
                    }
                  }
                },
                "example": {
                  "CISCO-VLAN-MEMBERSHIP-MIB:vmVmpsEntry": {
                    "vmVmpsIpAddress": "192.168.1.1",
                    "vmVmpsPrimary": true,
                    "vmVmpsRowStatus": "up(1)"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-vmVmpsEntry-2"
      },
      "x-yang-path": "/vmVmpsTable/vmVmpsEntry={vmVmpsIpAddress}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "vmVmpsIpAddress"
      ]
    },
    "/data/CISCO-VLAN-MEMBERSHIP-MIB:vmMembershipSummaryTable": {
      "get": {
        "summary": "Get vmMembershipSummaryTable data",
        "description": "Retrieve vmMembershipSummaryTable operational data from MIB",
        "tags": [
          "CISCO-VLAN-MEMBERSHIP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "A summary of VLAN membership of non-trunk\n        bridge ports. This is a convenience table\n        for retrieving VLAN membership information.\n        \n        A row is created for a VLAN if:\n        a) the VLAN exists, or\n        b) a port is assigned to a non-existent VLAN.\n        \n        VLAN membership can only be modified via the\n        vmMembershipTable.",
                  "properties": {
                    "vmMembershipSummaryEntry": {
                      "type": "array",
                      "description": "An entry (conceptual row) in the\n          vmMembershipSummaryTable.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "vmMembershipSummaryVlanIndex": {
                            "type": "string",
                            "description": "The VLAN id of the VLAN.",
                            "x-yang-type": "cisco-vtp:VlanIndex"
                          },
                          "vmMembershipSummaryMemberPorts": {
                            "type": "string",
                            "description": "The set of the device's member ports that belong\n            to the VLAN.\n            \n            Each octet within the value of this object specifies a\n            set of eight ports, with the first octet specifying ports\n            1 through 8, the second octet specifying ports 9\n            through 16, etc.   Within each octet, the most\n            significant bit represents the lowest numbered\n            port, and the least significant bit represents the\n            highest numbered port.  Thus, each port of the\n            VLAN is represented by a single bit within the\n            value of this object.  If that bit has a value of\n            '1' then that port is included in the set of\n            ports; the port is not included if its bit has a\n            value of '0'.\n            \n            A port number is the value of dot1dBasePort for\n            the port in the BRIDGE-MIB (RFC 1493).",
                            "format": "binary"
                          },
                          "vmMembershipSummaryMember2kPorts": {
                            "type": "string",
                            "description": "The set of the device's member ports that belong\n            to the VLAN. It has the VLAN membership information\n            of up to 2048 ports with the port number from 1 to \n            2048.\n            \n            Each octet within the value of this object specifies a\n            set of eight ports, with the first octet specifying \n            ports 1 through 8, the second octet specifying ports 9\n            through 16, etc.   Within each octet, the most\n            significant bit represents the lowest numbered\n            port, and the least significant bit represents the\n            highest numbered port.  Thus, each port of the\n            VLAN is represented by a single bit within the\n            value of this object.  If that bit has a value of\n            '1' then that port is included in the set of\n            ports; the port is not included if its bit has a\n            value of '0'.\n            \n            A port number is the value of dot1dBasePort for\n            the port in the BRIDGE-MIB (RFC 1493).",
                            "x-yang-type": "cisco-tc:CiscoPortList"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VLAN-MEMBERSHIP-MIB:vmMembershipSummaryTable": {
                    "vmMembershipSummaryEntry": [
                      {
                        "vmMembershipSummaryVlanIndex": "1",
                        "vmMembershipSummaryMemberPorts": "192.168.1.1",
                        "vmMembershipSummaryMember2kPorts": "192.168.1.1"
                      },
                      {
                        "vmMembershipSummaryVlanIndex": "2",
                        "vmMembershipSummaryMemberPorts": "192.168.1.1",
                        "vmMembershipSummaryMember2kPorts": "192.168.1.1"
                      },
                      {
                        "vmMembershipSummaryVlanIndex": "3",
                        "vmMembershipSummaryMemberPorts": "192.168.1.1",
                        "vmMembershipSummaryMember2kPorts": "192.168.1.1"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-vmMembershipSummaryTable",
        "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": "/vmMembershipSummaryTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VLAN-MEMBERSHIP-MIB:vmMembershipSummaryTable/vmMembershipSummaryEntry": {
      "get": {
        "summary": "Get vmMembershipSummaryEntry list",
        "description": "Retrieve list of vmMembershipSummaryEntry entries from MIB",
        "tags": [
          "CISCO-VLAN-MEMBERSHIP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An entry (conceptual row) in the\n          vmMembershipSummaryTable.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "vmMembershipSummaryVlanIndex": {
                        "type": "string",
                        "description": "The VLAN id of the VLAN.",
                        "x-yang-type": "cisco-vtp:VlanIndex"
                      },
                      "vmMembershipSummaryMemberPorts": {
                        "type": "string",
                        "description": "The set of the device's member ports that belong\n            to the VLAN.\n            \n            Each octet within the value of this object specifies a\n            set of eight ports, with the first octet specifying ports\n            1 through 8, the second octet specifying ports 9\n            through 16, etc.   Within each octet, the most\n            significant bit represents the lowest numbered\n            port, and the least significant bit represents the\n            highest numbered port.  Thus, each port of the\n            VLAN is represented by a single bit within the\n            value of this object.  If that bit has a value of\n            '1' then that port is included in the set of\n            ports; the port is not included if its bit has a\n            value of '0'.\n            \n            A port number is the value of dot1dBasePort for\n            the port in the BRIDGE-MIB (RFC 1493).",
                        "format": "binary"
                      },
                      "vmMembershipSummaryMember2kPorts": {
                        "type": "string",
                        "description": "The set of the device's member ports that belong\n            to the VLAN. It has the VLAN membership information\n            of up to 2048 ports with the port number from 1 to \n            2048.\n            \n            Each octet within the value of this object specifies a\n            set of eight ports, with the first octet specifying \n            ports 1 through 8, the second octet specifying ports 9\n            through 16, etc.   Within each octet, the most\n            significant bit represents the lowest numbered\n            port, and the least significant bit represents the\n            highest numbered port.  Thus, each port of the\n            VLAN is represented by a single bit within the\n            value of this object.  If that bit has a value of\n            '1' then that port is included in the set of\n            ports; the port is not included if its bit has a\n            value of '0'.\n            \n            A port number is the value of dot1dBasePort for\n            the port in the BRIDGE-MIB (RFC 1493).",
                        "x-yang-type": "cisco-tc:CiscoPortList"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VLAN-MEMBERSHIP-MIB:vmMembershipSummaryEntry": [
                    {
                      "vmMembershipSummaryVlanIndex": "192.168.1.1",
                      "vmMembershipSummaryMemberPorts": "192.168.1.1",
                      "vmMembershipSummaryMember2kPorts": "192.168.1.1"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-vmMembershipSummaryEntry",
        "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": "/vmMembershipSummaryTable/vmMembershipSummaryEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VLAN-MEMBERSHIP-MIB:vmMembershipSummaryTable/vmMembershipSummaryEntry={vmMembershipSummaryVlanIndex}": {
      "get": {
        "summary": "Get vmMembershipSummaryEntry entry",
        "description": "Retrieve specific vmMembershipSummaryEntry entry by key from MIB",
        "tags": [
          "CISCO-VLAN-MEMBERSHIP-MIB"
        ],
        "parameters": [
          {
            "name": "vmMembershipSummaryVlanIndex",
            "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": {
                    "vmMembershipSummaryVlanIndex": {
                      "type": "string",
                      "description": "The VLAN id of the VLAN.",
                      "x-yang-type": "cisco-vtp:VlanIndex"
                    },
                    "vmMembershipSummaryMemberPorts": {
                      "type": "string",
                      "description": "The set of the device's member ports that belong\n            to the VLAN.\n            \n            Each octet within the value of this object specifies a\n            set of eight ports, with the first octet specifying ports\n            1 through 8, the second octet specifying ports 9\n            through 16, etc.   Within each octet, the most\n            significant bit represents the lowest numbered\n            port, and the least significant bit represents the\n            highest numbered port.  Thus, each port of the\n            VLAN is represented by a single bit within the\n            value of this object.  If that bit has a value of\n            '1' then that port is included in the set of\n            ports; the port is not included if its bit has a\n            value of '0'.\n            \n            A port number is the value of dot1dBasePort for\n            the port in the BRIDGE-MIB (RFC 1493).",
                      "format": "binary"
                    },
                    "vmMembershipSummaryMember2kPorts": {
                      "type": "string",
                      "description": "The set of the device's member ports that belong\n            to the VLAN. It has the VLAN membership information\n            of up to 2048 ports with the port number from 1 to \n            2048.\n            \n            Each octet within the value of this object specifies a\n            set of eight ports, with the first octet specifying \n            ports 1 through 8, the second octet specifying ports 9\n            through 16, etc.   Within each octet, the most\n            significant bit represents the lowest numbered\n            port, and the least significant bit represents the\n            highest numbered port.  Thus, each port of the\n            VLAN is represented by a single bit within the\n            value of this object.  If that bit has a value of\n            '1' then that port is included in the set of\n            ports; the port is not included if its bit has a\n            value of '0'.\n            \n            A port number is the value of dot1dBasePort for\n            the port in the BRIDGE-MIB (RFC 1493).",
                      "x-yang-type": "cisco-tc:CiscoPortList"
                    }
                  }
                },
                "example": {
                  "CISCO-VLAN-MEMBERSHIP-MIB:vmMembershipSummaryEntry": {
                    "vmMembershipSummaryVlanIndex": "192.168.1.1",
                    "vmMembershipSummaryMemberPorts": "192.168.1.1",
                    "vmMembershipSummaryMember2kPorts": "192.168.1.1"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-vmMembershipSummaryEntry-2"
      },
      "x-yang-path": "/vmMembershipSummaryTable/vmMembershipSummaryEntry={vmMembershipSummaryVlanIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "vmMembershipSummaryVlanIndex"
      ]
    },
    "/data/CISCO-VLAN-MEMBERSHIP-MIB:vmMembershipTable": {
      "get": {
        "summary": "Get vmMembershipTable data",
        "description": "Retrieve vmMembershipTable operational data from MIB",
        "tags": [
          "CISCO-VLAN-MEMBERSHIP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "A table for configuring VLAN port membership.\n        There is one row for each bridge port that is\n        assigned to a static or dynamic access port. Trunk\n        ports are not  represented in this table.  An entry\n        may be created and deleted when ports are created or\n        deleted via SNMP or the management console on a \n        device.",
                  "properties": {
                    "vmMembershipEntry": {
                      "type": "array",
                      "description": "An entry (conceptual row) in the vmMembershipTable.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "ifIndex": {
                            "type": "string",
                            "description": "ifIndex",
                            "x-yang-type": "leafref"
                          },
                          "vmVlanType": {
                            "type": "string",
                            "description": "The type of VLAN membership assigned to this port.\n            A port with static vlan membership is assigned to a\n            single VLAN directly. A port with dynamic membership\n            is assigned a single VLAN based on content of packets\n            received on the port and via VQP queries to VMPS.\n            A port with multiVlan membership may be assigned to\n            one or more VLANs directly.\n            \n            A static or dynamic port membership is specified\n            by the value of vmVlan. A multiVlan port membership is\n            specified by the value of vmVlans."
                          },
                          "vmVlan": {
                            "type": "integer",
                            "description": "The VLAN id of the VLAN the port is assigned to\n            when vmVlanType is set to static or dynamic.\n            This object is not instantiated if not applicable.\n            \n            The value may be 0 if the port is not assigned\n            to a VLAN.\n            \n            If vmVlanType is static, the port is always\n            assigned to a VLAN and the object may not be\n            set to 0.\n            \n            If vmVlanType is dynamic the object's value is\n            0 if the port is currently not assigned to a VLAN.\n            In addition, the object may be set to 0 only.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "vmPortStatus": {
                            "type": "string",
                            "description": "An indication of the current VLAN status of the port.\n            A status of inactive(1) indicates that a dynamic port\n            does not yet have a VLAN assigned, or a port is \n            assigned to a VLAN that is currently not active. A \n            status of active(2) indicates that the currently \n            assigned VLAN is active. A status of shutdown(3) \n            indicates that the port has been disabled as a result\n            of VQP shutdown response."
                          },
                          "vmVlans": {
                            "type": "string",
                            "description": "The VLAN(s) the port is assigned to when the\n            port's vmVlanType is set to multiVlan.\n            This object is not instantiated if not applicable.\n            \n            The port is always assigned to one or more VLANs\n            and the object may not be set so that there are\n            no vlans assigned.\n            \n            Each octet within the value of this object specifies a\n            set of eight VLANs, with the first octet specifying\n            VLAN id 1 through 8, the second octet specifying VLAN\n            ids 9 through 16, etc.   Within each octet, the most\n            significant bit represents the lowest numbered\n            VLAN id, and the least significant bit represents the\n            highest numbered VLAN id.  Thus, each VLAN of the\n            port is represented by a single bit within the\n            value of this object.  If that bit has a value of\n            '1' then that VLAN is included in the set of\n            VLANs; the VLAN is not included if its bit has a\n            value of '0'.",
                            "format": "binary"
                          },
                          "vmVlans2k": {
                            "type": "string",
                            "description": "The VLAN(s) the port is assigned to when the\n            port's vmVlanType is set to multiVlan.\n            This object is not instantiated if not applicable.\n            \n            The port is always assigned to one or more VLANs\n            and the object may not be set so that there are\n            no vlans assigned.\n            \n            Each octet within the value of this object specifies a\n            set of eight VLANs, with the first octet specifying\n            VLAN id 1024 through 1031, the second octet specifying \n            VLAN ids 1032 through 1039, etc.  Within each octet, \n            the most significant bit represents the lowest \n            numbered VLAN id, and the least significant bit \n            represents the highest numbered VLAN id.  Thus, each \n            VLAN of the port is represented by a single bit within\n            the value of this object.  If that bit has a value of\n            '1' then that VLAN is included in the set of\n            VLANs; the VLAN is not included if its bit has a\n            value of '0'.",
                            "format": "binary"
                          },
                          "vmVlans3k": {
                            "type": "string",
                            "description": "The VLAN(s) the port is assigned to when the\n            port's vmVlanType is set to multiVlan.\n            This object is not instantiated if not applicable.\n            \n            The port is always assigned to one or more VLANs\n            and the object may not be set so that there are\n            no vlans assigned.\n            \n            Each octet within the value of this object specifies a\n            set of eight VLANs, with the first octet specifying\n            VLAN id 2048 through 2055, the second octet specifying \n            VLAN ids 2056 through 2063, etc.   Within each octet, \n            the most significant bit represents the lowest \n            numbered VLAN id, and the least significant bit \n            represents the highest numbered VLAN id.  Thus, each\n            VLAN of the port is represented by a single bit within\n            the value of this object.  If that bit has a value of\n            '1' then that VLAN is included in the set of\n            VLANs; the VLAN is not included if its bit has a\n            value of '0'.",
                            "format": "binary"
                          },
                          "vmVlans4k": {
                            "type": "string",
                            "description": "The VLAN(s) the port is assigned to when the\n            port's vmVlanType is set to multiVlan.\n            This object is not instantiated if not applicable.\n            \n            The port is always assigned to one or more VLANs\n            and the object may not be set so that there are\n            no vlans assigned.\n            \n            Each octet within the value of this object specifies a\n            set of eight VLANs, with the first octet specifying\n            VLAN id 3072 through 3079, the second octet specifying \n            VLAN ids 3040 through 3047, etc.   Within each octet, \n            the most significant bit represents the lowest \n            numbered VLAN id, and the least significant bit \n            represents the highest numbered VLAN id.  Thus, each\n            VLAN of the port is represented by a single bit within\n            the value of this object.  If that bit has a value of\n            '1' then that VLAN is included in the set of\n            VLANs; the VLAN is not included if its bit has a\n            value of '0'.",
                            "format": "binary"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VLAN-MEMBERSHIP-MIB:vmMembershipTable": {
                    "vmMembershipEntry": [
                      {
                        "ifIndex": "1",
                        "vmVlanType": "ethernetCsmacd(6)",
                        "vmVlan": -2147483648,
                        "vmPortStatus": "up(1)",
                        "vmVlans": "example-string",
                        "vmVlans2k": "example-string",
                        "vmVlans3k": "example-string",
                        "vmVlans4k": "example-string"
                      },
                      {
                        "ifIndex": "2",
                        "vmVlanType": "ethernetCsmacd(6)",
                        "vmVlan": -2147483648,
                        "vmPortStatus": "up(1)",
                        "vmVlans": "example-string",
                        "vmVlans2k": "example-string",
                        "vmVlans3k": "example-string",
                        "vmVlans4k": "example-string"
                      },
                      {
                        "ifIndex": "3",
                        "vmVlanType": "ethernetCsmacd(6)",
                        "vmVlan": -2147483648,
                        "vmPortStatus": "up(1)",
                        "vmVlans": "example-string",
                        "vmVlans2k": "example-string",
                        "vmVlans3k": "example-string",
                        "vmVlans4k": "example-string"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-vmMembershipTable",
        "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": "/vmMembershipTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VLAN-MEMBERSHIP-MIB:vmMembershipTable/vmMembershipEntry": {
      "get": {
        "summary": "Get vmMembershipEntry list",
        "description": "Retrieve list of vmMembershipEntry entries from MIB",
        "tags": [
          "CISCO-VLAN-MEMBERSHIP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An entry (conceptual row) in the vmMembershipTable.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "ifIndex": {
                        "type": "string",
                        "description": "ifIndex",
                        "x-yang-type": "leafref"
                      },
                      "vmVlanType": {
                        "type": "string",
                        "description": "The type of VLAN membership assigned to this port.\n            A port with static vlan membership is assigned to a\n            single VLAN directly. A port with dynamic membership\n            is assigned a single VLAN based on content of packets\n            received on the port and via VQP queries to VMPS.\n            A port with multiVlan membership may be assigned to\n            one or more VLANs directly.\n            \n            A static or dynamic port membership is specified\n            by the value of vmVlan. A multiVlan port membership is\n            specified by the value of vmVlans."
                      },
                      "vmVlan": {
                        "type": "integer",
                        "description": "The VLAN id of the VLAN the port is assigned to\n            when vmVlanType is set to static or dynamic.\n            This object is not instantiated if not applicable.\n            \n            The value may be 0 if the port is not assigned\n            to a VLAN.\n            \n            If vmVlanType is static, the port is always\n            assigned to a VLAN and the object may not be\n            set to 0.\n            \n            If vmVlanType is dynamic the object's value is\n            0 if the port is currently not assigned to a VLAN.\n            In addition, the object may be set to 0 only.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "vmPortStatus": {
                        "type": "string",
                        "description": "An indication of the current VLAN status of the port.\n            A status of inactive(1) indicates that a dynamic port\n            does not yet have a VLAN assigned, or a port is \n            assigned to a VLAN that is currently not active. A \n            status of active(2) indicates that the currently \n            assigned VLAN is active. A status of shutdown(3) \n            indicates that the port has been disabled as a result\n            of VQP shutdown response."
                      },
                      "vmVlans": {
                        "type": "string",
                        "description": "The VLAN(s) the port is assigned to when the\n            port's vmVlanType is set to multiVlan.\n            This object is not instantiated if not applicable.\n            \n            The port is always assigned to one or more VLANs\n            and the object may not be set so that there are\n            no vlans assigned.\n            \n            Each octet within the value of this object specifies a\n            set of eight VLANs, with the first octet specifying\n            VLAN id 1 through 8, the second octet specifying VLAN\n            ids 9 through 16, etc.   Within each octet, the most\n            significant bit represents the lowest numbered\n            VLAN id, and the least significant bit represents the\n            highest numbered VLAN id.  Thus, each VLAN of the\n            port is represented by a single bit within the\n            value of this object.  If that bit has a value of\n            '1' then that VLAN is included in the set of\n            VLANs; the VLAN is not included if its bit has a\n            value of '0'.",
                        "format": "binary"
                      },
                      "vmVlans2k": {
                        "type": "string",
                        "description": "The VLAN(s) the port is assigned to when the\n            port's vmVlanType is set to multiVlan.\n            This object is not instantiated if not applicable.\n            \n            The port is always assigned to one or more VLANs\n            and the object may not be set so that there are\n            no vlans assigned.\n            \n            Each octet within the value of this object specifies a\n            set of eight VLANs, with the first octet specifying\n            VLAN id 1024 through 1031, the second octet specifying \n            VLAN ids 1032 through 1039, etc.  Within each octet, \n            the most significant bit represents the lowest \n            numbered VLAN id, and the least significant bit \n            represents the highest numbered VLAN id.  Thus, each \n            VLAN of the port is represented by a single bit within\n            the value of this object.  If that bit has a value of\n            '1' then that VLAN is included in the set of\n            VLANs; the VLAN is not included if its bit has a\n            value of '0'.",
                        "format": "binary"
                      },
                      "vmVlans3k": {
                        "type": "string",
                        "description": "The VLAN(s) the port is assigned to when the\n            port's vmVlanType is set to multiVlan.\n            This object is not instantiated if not applicable.\n            \n            The port is always assigned to one or more VLANs\n            and the object may not be set so that there are\n            no vlans assigned.\n            \n            Each octet within the value of this object specifies a\n            set of eight VLANs, with the first octet specifying\n            VLAN id 2048 through 2055, the second octet specifying \n            VLAN ids 2056 through 2063, etc.   Within each octet, \n            the most significant bit represents the lowest \n            numbered VLAN id, and the least significant bit \n            represents the highest numbered VLAN id.  Thus, each\n            VLAN of the port is represented by a single bit within\n            the value of this object.  If that bit has a value of\n            '1' then that VLAN is included in the set of\n            VLANs; the VLAN is not included if its bit has a\n            value of '0'.",
                        "format": "binary"
                      },
                      "vmVlans4k": {
                        "type": "string",
                        "description": "The VLAN(s) the port is assigned to when the\n            port's vmVlanType is set to multiVlan.\n            This object is not instantiated if not applicable.\n            \n            The port is always assigned to one or more VLANs\n            and the object may not be set so that there are\n            no vlans assigned.\n            \n            Each octet within the value of this object specifies a\n            set of eight VLANs, with the first octet specifying\n            VLAN id 3072 through 3079, the second octet specifying \n            VLAN ids 3040 through 3047, etc.   Within each octet, \n            the most significant bit represents the lowest \n            numbered VLAN id, and the least significant bit \n            represents the highest numbered VLAN id.  Thus, each\n            VLAN of the port is represented by a single bit within\n            the value of this object.  If that bit has a value of\n            '1' then that VLAN is included in the set of\n            VLANs; the VLAN is not included if its bit has a\n            value of '0'.",
                        "format": "binary"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VLAN-MEMBERSHIP-MIB:vmMembershipEntry": [
                    {
                      "ifIndex": "example-string",
                      "vmVlanType": "ethernetCsmacd(6)",
                      "vmVlan": -2147483648,
                      "vmPortStatus": "up(1)",
                      "vmVlans": "example-string",
                      "vmVlans2k": "example-string",
                      "vmVlans3k": "example-string",
                      "vmVlans4k": "example-string"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-vmMembershipEntry",
        "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": "/vmMembershipTable/vmMembershipEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VLAN-MEMBERSHIP-MIB:vmMembershipTable/vmMembershipEntry={ifIndex}": {
      "get": {
        "summary": "Get vmMembershipEntry entry",
        "description": "Retrieve specific vmMembershipEntry entry by key from MIB",
        "tags": [
          "CISCO-VLAN-MEMBERSHIP-MIB"
        ],
        "parameters": [
          {
            "name": "ifIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "1"
          },
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "ifIndex": {
                      "type": "string",
                      "description": "ifIndex",
                      "x-yang-type": "leafref"
                    },
                    "vmVlanType": {
                      "type": "string",
                      "description": "The type of VLAN membership assigned to this port.\n            A port with static vlan membership is assigned to a\n            single VLAN directly. A port with dynamic membership\n            is assigned a single VLAN based on content of packets\n            received on the port and via VQP queries to VMPS.\n            A port with multiVlan membership may be assigned to\n            one or more VLANs directly.\n            \n            A static or dynamic port membership is specified\n            by the value of vmVlan. A multiVlan port membership is\n            specified by the value of vmVlans."
                    },
                    "vmVlan": {
                      "type": "integer",
                      "description": "The VLAN id of the VLAN the port is assigned to\n            when vmVlanType is set to static or dynamic.\n            This object is not instantiated if not applicable.\n            \n            The value may be 0 if the port is not assigned\n            to a VLAN.\n            \n            If vmVlanType is static, the port is always\n            assigned to a VLAN and the object may not be\n            set to 0.\n            \n            If vmVlanType is dynamic the object's value is\n            0 if the port is currently not assigned to a VLAN.\n            In addition, the object may be set to 0 only.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "vmPortStatus": {
                      "type": "string",
                      "description": "An indication of the current VLAN status of the port.\n            A status of inactive(1) indicates that a dynamic port\n            does not yet have a VLAN assigned, or a port is \n            assigned to a VLAN that is currently not active. A \n            status of active(2) indicates that the currently \n            assigned VLAN is active. A status of shutdown(3) \n            indicates that the port has been disabled as a result\n            of VQP shutdown response."
                    },
                    "vmVlans": {
                      "type": "string",
                      "description": "The VLAN(s) the port is assigned to when the\n            port's vmVlanType is set to multiVlan.\n            This object is not instantiated if not applicable.\n            \n            The port is always assigned to one or more VLANs\n            and the object may not be set so that there are\n            no vlans assigned.\n            \n            Each octet within the value of this object specifies a\n            set of eight VLANs, with the first octet specifying\n            VLAN id 1 through 8, the second octet specifying VLAN\n            ids 9 through 16, etc.   Within each octet, the most\n            significant bit represents the lowest numbered\n            VLAN id, and the least significant bit represents the\n            highest numbered VLAN id.  Thus, each VLAN of the\n            port is represented by a single bit within the\n            value of this object.  If that bit has a value of\n            '1' then that VLAN is included in the set of\n            VLANs; the VLAN is not included if its bit has a\n            value of '0'.",
                      "format": "binary"
                    },
                    "vmVlans2k": {
                      "type": "string",
                      "description": "The VLAN(s) the port is assigned to when the\n            port's vmVlanType is set to multiVlan.\n            This object is not instantiated if not applicable.\n            \n            The port is always assigned to one or more VLANs\n            and the object may not be set so that there are\n            no vlans assigned.\n            \n            Each octet within the value of this object specifies a\n            set of eight VLANs, with the first octet specifying\n            VLAN id 1024 through 1031, the second octet specifying \n            VLAN ids 1032 through 1039, etc.  Within each octet, \n            the most significant bit represents the lowest \n            numbered VLAN id, and the least significant bit \n            represents the highest numbered VLAN id.  Thus, each \n            VLAN of the port is represented by a single bit within\n            the value of this object.  If that bit has a value of\n            '1' then that VLAN is included in the set of\n            VLANs; the VLAN is not included if its bit has a\n            value of '0'.",
                      "format": "binary"
                    },
                    "vmVlans3k": {
                      "type": "string",
                      "description": "The VLAN(s) the port is assigned to when the\n            port's vmVlanType is set to multiVlan.\n            This object is not instantiated if not applicable.\n            \n            The port is always assigned to one or more VLANs\n            and the object may not be set so that there are\n            no vlans assigned.\n            \n            Each octet within the value of this object specifies a\n            set of eight VLANs, with the first octet specifying\n            VLAN id 2048 through 2055, the second octet specifying \n            VLAN ids 2056 through 2063, etc.   Within each octet, \n            the most significant bit represents the lowest \n            numbered VLAN id, and the least significant bit \n            represents the highest numbered VLAN id.  Thus, each\n            VLAN of the port is represented by a single bit within\n            the value of this object.  If that bit has a value of\n            '1' then that VLAN is included in the set of\n            VLANs; the VLAN is not included if its bit has a\n            value of '0'.",
                      "format": "binary"
                    },
                    "vmVlans4k": {
                      "type": "string",
                      "description": "The VLAN(s) the port is assigned to when the\n            port's vmVlanType is set to multiVlan.\n            This object is not instantiated if not applicable.\n            \n            The port is always assigned to one or more VLANs\n            and the object may not be set so that there are\n            no vlans assigned.\n            \n            Each octet within the value of this object specifies a\n            set of eight VLANs, with the first octet specifying\n            VLAN id 3072 through 3079, the second octet specifying \n            VLAN ids 3040 through 3047, etc.   Within each octet, \n            the most significant bit represents the lowest \n            numbered VLAN id, and the least significant bit \n            represents the highest numbered VLAN id.  Thus, each\n            VLAN of the port is represented by a single bit within\n            the value of this object.  If that bit has a value of\n            '1' then that VLAN is included in the set of\n            VLANs; the VLAN is not included if its bit has a\n            value of '0'.",
                      "format": "binary"
                    }
                  }
                },
                "example": {
                  "CISCO-VLAN-MEMBERSHIP-MIB:vmMembershipEntry": {
                    "ifIndex": "example-string",
                    "vmVlanType": "ethernetCsmacd(6)",
                    "vmVlan": -2147483648,
                    "vmPortStatus": "up(1)",
                    "vmVlans": "example-string",
                    "vmVlans2k": "example-string",
                    "vmVlans3k": "example-string",
                    "vmVlans4k": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-vmMembershipEntry-2"
      },
      "x-yang-path": "/vmMembershipTable/vmMembershipEntry={ifIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "ifIndex"
      ]
    },
    "/data/CISCO-VLAN-MEMBERSHIP-MIB:vmMembershipSummaryExtTable": {
      "get": {
        "summary": "Get vmMembershipSummaryExtTable data",
        "description": "Retrieve vmMembershipSummaryExtTable operational data from MIB",
        "tags": [
          "CISCO-VLAN-MEMBERSHIP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "vmMembershipSummaryExtTable",
                  "properties": {
                    "vmMembershipSummaryExtEntry": {
                      "type": "array",
                      "description": "An entry (conceptual row) in the\n          vmMembershipSummaryExtTable.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "vmMembershipSummaryVlanIndex": {
                            "type": "string",
                            "description": "vmMembershipSummaryVlanIndex",
                            "x-yang-type": "leafref"
                          },
                          "vmMembershipPortRangeIndex": {
                            "type": "string",
                            "description": "The bridge port range index of this row.",
                            "x-yang-type": "cisco-tc:CiscoPortListRange"
                          },
                          "vmMembershipSummaryExtPorts": {
                            "type": "string",
                            "description": "The set of the device's member ports that belong\n            to the VLAN. It has the VLAN membership information\n            of up to 2k ports with the port number starting from\n            the information indicated in vmMembershipPortRangeIndex\n            object of the same row. For example, if the value\n            of vmMembershipPortRangeIndex is 'twoKto4K', the\n            port number indicated in this object starting from\n            2049 and ending to 4096. \n            \n            A port number is the value of dot1dBasePort for\n            the port in the BRIDGE-MIB (RFC 1493).",
                            "x-yang-type": "cisco-tc:CiscoPortList"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VLAN-MEMBERSHIP-MIB:vmMembershipSummaryExtTable": {
                    "vmMembershipSummaryExtEntry": [
                      {
                        "vmMembershipSummaryVlanIndex": "1",
                        "vmMembershipPortRangeIndex": "1",
                        "vmMembershipSummaryExtPorts": "192.168.1.1"
                      },
                      {
                        "vmMembershipSummaryVlanIndex": "2",
                        "vmMembershipPortRangeIndex": "2",
                        "vmMembershipSummaryExtPorts": "192.168.1.1"
                      },
                      {
                        "vmMembershipSummaryVlanIndex": "3",
                        "vmMembershipPortRangeIndex": "3",
                        "vmMembershipSummaryExtPorts": "192.168.1.1"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-vmMembershipSummaryExtTable",
        "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": "/vmMembershipSummaryExtTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VLAN-MEMBERSHIP-MIB:vmMembershipSummaryExtTable/vmMembershipSummaryExtEntry": {
      "get": {
        "summary": "Get vmMembershipSummaryExtEntry list",
        "description": "Retrieve list of vmMembershipSummaryExtEntry entries from MIB",
        "tags": [
          "CISCO-VLAN-MEMBERSHIP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An entry (conceptual row) in the\n          vmMembershipSummaryExtTable.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "vmMembershipSummaryVlanIndex": {
                        "type": "string",
                        "description": "vmMembershipSummaryVlanIndex",
                        "x-yang-type": "leafref"
                      },
                      "vmMembershipPortRangeIndex": {
                        "type": "string",
                        "description": "The bridge port range index of this row.",
                        "x-yang-type": "cisco-tc:CiscoPortListRange"
                      },
                      "vmMembershipSummaryExtPorts": {
                        "type": "string",
                        "description": "The set of the device's member ports that belong\n            to the VLAN. It has the VLAN membership information\n            of up to 2k ports with the port number starting from\n            the information indicated in vmMembershipPortRangeIndex\n            object of the same row. For example, if the value\n            of vmMembershipPortRangeIndex is 'twoKto4K', the\n            port number indicated in this object starting from\n            2049 and ending to 4096. \n            \n            A port number is the value of dot1dBasePort for\n            the port in the BRIDGE-MIB (RFC 1493).",
                        "x-yang-type": "cisco-tc:CiscoPortList"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VLAN-MEMBERSHIP-MIB:vmMembershipSummaryExtEntry": [
                    {
                      "vmMembershipSummaryVlanIndex": "192.168.1.1",
                      "vmMembershipPortRangeIndex": "192.168.1.1",
                      "vmMembershipSummaryExtPorts": "192.168.1.1"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-vmMembershipSummaryExtEntry",
        "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": "/vmMembershipSummaryExtTable/vmMembershipSummaryExtEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VLAN-MEMBERSHIP-MIB:vmVoiceVlanTable": {
      "get": {
        "summary": "Get vmVoiceVlanTable data",
        "description": "Retrieve vmVoiceVlanTable operational data from MIB",
        "tags": [
          "CISCO-VLAN-MEMBERSHIP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "A table for configuring the Voice VLAN-ID\n        for the ports. An entry will exist for each\n        interface which supports Voice Vlan feature.",
                  "properties": {
                    "vmVoiceVlanEntry": {
                      "type": "array",
                      "description": "An entry (conceptual row) in the vmVoiceVlanTable.\n          Only interfaces which support Voice Vlan feature\n          are shown.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "ifIndex": {
                            "type": "string",
                            "description": "ifIndex",
                            "x-yang-type": "leafref"
                          },
                          "vmVoiceVlanId": {
                            "type": "integer",
                            "description": "The Voice Vlan ID (VVID) to which this\n            port belongs to.\n            \n            0    -    The CDP packets transmitting \n                      through this port would contain\n                      Appliance VLAN-ID TLV with value \n                      of 0. VoIP and related packets \n                      are expected to be sent and \n                      received with VLAN-id=0 and an \n                      802.1p priority. \n            \n            1..4094 - The CDP packets transmitting\n                      through this port would contain\n                      Appliance VLAN-ID TLV with N.\n                      VoIP and related packets are\n                      expected to be sent and received\n                      with VLAN-id=N and an 802.1p\n                      priority.\n            \n            4095  -   The CDP packets transmitting\n                      through this port would contain\n                      Appliance VLAN-ID TLV with value\n                      of 4095. VoIP and related packets\n                      are expected to be sent and \n                      received untagged without an \n                      802.1p priority.\n            \n            4096  -   The CDP packets transmitting \n                      through this port would not \n                      include Appliance VLAN-ID TLV; \n                      or, if the VVID is not supported \n                      on the port, this MIB object will\n                      not be configurable and will \n                      return 4096.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "vmVoiceVlanCdpVerifyEnable": {
                            "type": "boolean",
                            "description": "Enable or Disable the feature of CDP message\n            verification of voice VLANs.\n            \n            true   - The voice VLAN vmVoiceVlan is enabled \n                     only after CDP messages are received \n                     from the IP phone.\n            \n            false -  The voice VLAN vmVoiceVlan is enabled\n                     as soon as the IP phone interface is\n                     up. There is no verification needed \n                     from CDP messages from the IP phone."
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VLAN-MEMBERSHIP-MIB:vmVoiceVlanTable": {
                    "vmVoiceVlanEntry": [
                      {
                        "ifIndex": "1",
                        "vmVoiceVlanId": -2147483648,
                        "vmVoiceVlanCdpVerifyEnable": true
                      },
                      {
                        "ifIndex": "2",
                        "vmVoiceVlanId": -2147483648,
                        "vmVoiceVlanCdpVerifyEnable": true
                      },
                      {
                        "ifIndex": "3",
                        "vmVoiceVlanId": -2147483648,
                        "vmVoiceVlanCdpVerifyEnable": true
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-vmVoiceVlanTable",
        "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": "/vmVoiceVlanTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VLAN-MEMBERSHIP-MIB:vmVoiceVlanTable/vmVoiceVlanEntry": {
      "get": {
        "summary": "Get vmVoiceVlanEntry list",
        "description": "Retrieve list of vmVoiceVlanEntry entries from MIB",
        "tags": [
          "CISCO-VLAN-MEMBERSHIP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An entry (conceptual row) in the vmVoiceVlanTable.\n          Only interfaces which support Voice Vlan feature\n          are shown.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "ifIndex": {
                        "type": "string",
                        "description": "ifIndex",
                        "x-yang-type": "leafref"
                      },
                      "vmVoiceVlanId": {
                        "type": "integer",
                        "description": "The Voice Vlan ID (VVID) to which this\n            port belongs to.\n            \n            0    -    The CDP packets transmitting \n                      through this port would contain\n                      Appliance VLAN-ID TLV with value \n                      of 0. VoIP and related packets \n                      are expected to be sent and \n                      received with VLAN-id=0 and an \n                      802.1p priority. \n            \n            1..4094 - The CDP packets transmitting\n                      through this port would contain\n                      Appliance VLAN-ID TLV with N.\n                      VoIP and related packets are\n                      expected to be sent and received\n                      with VLAN-id=N and an 802.1p\n                      priority.\n            \n            4095  -   The CDP packets transmitting\n                      through this port would contain\n                      Appliance VLAN-ID TLV with value\n                      of 4095. VoIP and related packets\n                      are expected to be sent and \n                      received untagged without an \n                      802.1p priority.\n            \n            4096  -   The CDP packets transmitting \n                      through this port would not \n                      include Appliance VLAN-ID TLV; \n                      or, if the VVID is not supported \n                      on the port, this MIB object will\n                      not be configurable and will \n                      return 4096.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "vmVoiceVlanCdpVerifyEnable": {
                        "type": "boolean",
                        "description": "Enable or Disable the feature of CDP message\n            verification of voice VLANs.\n            \n            true   - The voice VLAN vmVoiceVlan is enabled \n                     only after CDP messages are received \n                     from the IP phone.\n            \n            false -  The voice VLAN vmVoiceVlan is enabled\n                     as soon as the IP phone interface is\n                     up. There is no verification needed \n                     from CDP messages from the IP phone."
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VLAN-MEMBERSHIP-MIB:vmVoiceVlanEntry": [
                    {
                      "ifIndex": "example-string",
                      "vmVoiceVlanId": -2147483648,
                      "vmVoiceVlanCdpVerifyEnable": true
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-vmVoiceVlanEntry",
        "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": "/vmVoiceVlanTable/vmVoiceVlanEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VLAN-MEMBERSHIP-MIB:vmVoiceVlanTable/vmVoiceVlanEntry={ifIndex}": {
      "get": {
        "summary": "Get vmVoiceVlanEntry entry",
        "description": "Retrieve specific vmVoiceVlanEntry entry by key from MIB",
        "tags": [
          "CISCO-VLAN-MEMBERSHIP-MIB"
        ],
        "parameters": [
          {
            "name": "ifIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "1"
          },
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "ifIndex": {
                      "type": "string",
                      "description": "ifIndex",
                      "x-yang-type": "leafref"
                    },
                    "vmVoiceVlanId": {
                      "type": "integer",
                      "description": "The Voice Vlan ID (VVID) to which this\n            port belongs to.\n            \n            0    -    The CDP packets transmitting \n                      through this port would contain\n                      Appliance VLAN-ID TLV with value \n                      of 0. VoIP and related packets \n                      are expected to be sent and \n                      received with VLAN-id=0 and an \n                      802.1p priority. \n            \n            1..4094 - The CDP packets transmitting\n                      through this port would contain\n                      Appliance VLAN-ID TLV with N.\n                      VoIP and related packets are\n                      expected to be sent and received\n                      with VLAN-id=N and an 802.1p\n                      priority.\n            \n            4095  -   The CDP packets transmitting\n                      through this port would contain\n                      Appliance VLAN-ID TLV with value\n                      of 4095. VoIP and related packets\n                      are expected to be sent and \n                      received untagged without an \n                      802.1p priority.\n            \n            4096  -   The CDP packets transmitting \n                      through this port would not \n                      include Appliance VLAN-ID TLV; \n                      or, if the VVID is not supported \n                      on the port, this MIB object will\n                      not be configurable and will \n                      return 4096.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "vmVoiceVlanCdpVerifyEnable": {
                      "type": "boolean",
                      "description": "Enable or Disable the feature of CDP message\n            verification of voice VLANs.\n            \n            true   - The voice VLAN vmVoiceVlan is enabled \n                     only after CDP messages are received \n                     from the IP phone.\n            \n            false -  The voice VLAN vmVoiceVlan is enabled\n                     as soon as the IP phone interface is\n                     up. There is no verification needed \n                     from CDP messages from the IP phone."
                    }
                  }
                },
                "example": {
                  "CISCO-VLAN-MEMBERSHIP-MIB:vmVoiceVlanEntry": {
                    "ifIndex": "example-string",
                    "vmVoiceVlanId": -2147483648,
                    "vmVoiceVlanCdpVerifyEnable": true
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-vmVoiceVlanEntry-2"
      },
      "x-yang-path": "/vmVoiceVlanTable/vmVoiceVlanEntry={ifIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "ifIndex"
      ]
    },
    "/data/CISCO-VLAN-MEMBERSHIP-MIB:vmVmpsEntry": {
      "get": {
        "summary": "Get vmVmpsEntry list",
        "description": "Retrieve list of vmVmpsEntry entries from MIB",
        "tags": [
          "CISCO-VLAN-MEMBERSHIP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An entry (conceptual row) in the vmVmpsTable.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "vmVmpsIpAddress": {
                        "type": "string",
                        "description": "The Ip Address of the VMPS.",
                        "format": "inet:ipv4-address"
                      },
                      "vmVmpsPrimary": {
                        "type": "boolean",
                        "description": "The status of the VMPS. Setting this value\n            to true will make this VMPS the primary server\n            and make the switch use this as the current server.\n            Setting this entry to true causes other rows\n            to transition to false. Attempting to write\n            a value of false after creation will result in\n            a return of bad value. Deleting an entry whose\n            value is true will result in the first entry\n            in the table being set to true."
                      },
                      "vmVmpsRowStatus": {
                        "type": "string",
                        "description": "The status of this conceptual row.",
                        "x-yang-type": "snmpv2-tc:RowStatus"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VLAN-MEMBERSHIP-MIB:vmVmpsEntry": [
                    {
                      "vmVmpsIpAddress": "192.168.1.1",
                      "vmVmpsPrimary": true,
                      "vmVmpsRowStatus": "up(1)"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-vmVmpsEntry-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": "/vmVmpsEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VLAN-MEMBERSHIP-MIB:vmVmpsEntry={vmVmpsIpAddress}": {
      "get": {
        "summary": "Get vmVmpsEntry entry",
        "description": "Retrieve specific vmVmpsEntry entry by key from MIB",
        "tags": [
          "CISCO-VLAN-MEMBERSHIP-MIB"
        ],
        "parameters": [
          {
            "name": "vmVmpsIpAddress",
            "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": {
                    "vmVmpsIpAddress": {
                      "type": "string",
                      "description": "The Ip Address of the VMPS.",
                      "format": "inet:ipv4-address"
                    },
                    "vmVmpsPrimary": {
                      "type": "boolean",
                      "description": "The status of the VMPS. Setting this value\n            to true will make this VMPS the primary server\n            and make the switch use this as the current server.\n            Setting this entry to true causes other rows\n            to transition to false. Attempting to write\n            a value of false after creation will result in\n            a return of bad value. Deleting an entry whose\n            value is true will result in the first entry\n            in the table being set to true."
                    },
                    "vmVmpsRowStatus": {
                      "type": "string",
                      "description": "The status of this conceptual row.",
                      "x-yang-type": "snmpv2-tc:RowStatus"
                    }
                  }
                },
                "example": {
                  "CISCO-VLAN-MEMBERSHIP-MIB:vmVmpsEntry": {
                    "vmVmpsIpAddress": "192.168.1.1",
                    "vmVmpsPrimary": true,
                    "vmVmpsRowStatus": "up(1)"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-vmVmpsEntry-4"
      },
      "x-yang-path": "/vmVmpsEntry={vmVmpsIpAddress}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "vmVmpsIpAddress"
      ]
    },
    "/data/CISCO-VLAN-MEMBERSHIP-MIB:vmMembershipSummaryEntry": {
      "get": {
        "summary": "Get vmMembershipSummaryEntry list",
        "description": "Retrieve list of vmMembershipSummaryEntry entries from MIB",
        "tags": [
          "CISCO-VLAN-MEMBERSHIP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An entry (conceptual row) in the\n          vmMembershipSummaryTable.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "vmMembershipSummaryVlanIndex": {
                        "type": "string",
                        "description": "The VLAN id of the VLAN.",
                        "x-yang-type": "cisco-vtp:VlanIndex"
                      },
                      "vmMembershipSummaryMemberPorts": {
                        "type": "string",
                        "description": "The set of the device's member ports that belong\n            to the VLAN.\n            \n            Each octet within the value of this object specifies a\n            set of eight ports, with the first octet specifying ports\n            1 through 8, the second octet specifying ports 9\n            through 16, etc.   Within each octet, the most\n            significant bit represents the lowest numbered\n            port, and the least significant bit represents the\n            highest numbered port.  Thus, each port of the\n            VLAN is represented by a single bit within the\n            value of this object.  If that bit has a value of\n            '1' then that port is included in the set of\n            ports; the port is not included if its bit has a\n            value of '0'.\n            \n            A port number is the value of dot1dBasePort for\n            the port in the BRIDGE-MIB (RFC 1493).",
                        "format": "binary"
                      },
                      "vmMembershipSummaryMember2kPorts": {
                        "type": "string",
                        "description": "The set of the device's member ports that belong\n            to the VLAN. It has the VLAN membership information\n            of up to 2048 ports with the port number from 1 to \n            2048.\n            \n            Each octet within the value of this object specifies a\n            set of eight ports, with the first octet specifying \n            ports 1 through 8, the second octet specifying ports 9\n            through 16, etc.   Within each octet, the most\n            significant bit represents the lowest numbered\n            port, and the least significant bit represents the\n            highest numbered port.  Thus, each port of the\n            VLAN is represented by a single bit within the\n            value of this object.  If that bit has a value of\n            '1' then that port is included in the set of\n            ports; the port is not included if its bit has a\n            value of '0'.\n            \n            A port number is the value of dot1dBasePort for\n            the port in the BRIDGE-MIB (RFC 1493).",
                        "x-yang-type": "cisco-tc:CiscoPortList"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VLAN-MEMBERSHIP-MIB:vmMembershipSummaryEntry": [
                    {
                      "vmMembershipSummaryVlanIndex": "192.168.1.1",
                      "vmMembershipSummaryMemberPorts": "192.168.1.1",
                      "vmMembershipSummaryMember2kPorts": "192.168.1.1"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-vmMembershipSummaryEntry-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": "/vmMembershipSummaryEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VLAN-MEMBERSHIP-MIB:vmMembershipSummaryEntry={vmMembershipSummaryVlanIndex}": {
      "get": {
        "summary": "Get vmMembershipSummaryEntry entry",
        "description": "Retrieve specific vmMembershipSummaryEntry entry by key from MIB",
        "tags": [
          "CISCO-VLAN-MEMBERSHIP-MIB"
        ],
        "parameters": [
          {
            "name": "vmMembershipSummaryVlanIndex",
            "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": {
                    "vmMembershipSummaryVlanIndex": {
                      "type": "string",
                      "description": "The VLAN id of the VLAN.",
                      "x-yang-type": "cisco-vtp:VlanIndex"
                    },
                    "vmMembershipSummaryMemberPorts": {
                      "type": "string",
                      "description": "The set of the device's member ports that belong\n            to the VLAN.\n            \n            Each octet within the value of this object specifies a\n            set of eight ports, with the first octet specifying ports\n            1 through 8, the second octet specifying ports 9\n            through 16, etc.   Within each octet, the most\n            significant bit represents the lowest numbered\n            port, and the least significant bit represents the\n            highest numbered port.  Thus, each port of the\n            VLAN is represented by a single bit within the\n            value of this object.  If that bit has a value of\n            '1' then that port is included in the set of\n            ports; the port is not included if its bit has a\n            value of '0'.\n            \n            A port number is the value of dot1dBasePort for\n            the port in the BRIDGE-MIB (RFC 1493).",
                      "format": "binary"
                    },
                    "vmMembershipSummaryMember2kPorts": {
                      "type": "string",
                      "description": "The set of the device's member ports that belong\n            to the VLAN. It has the VLAN membership information\n            of up to 2048 ports with the port number from 1 to \n            2048.\n            \n            Each octet within the value of this object specifies a\n            set of eight ports, with the first octet specifying \n            ports 1 through 8, the second octet specifying ports 9\n            through 16, etc.   Within each octet, the most\n            significant bit represents the lowest numbered\n            port, and the least significant bit represents the\n            highest numbered port.  Thus, each port of the\n            VLAN is represented by a single bit within the\n            value of this object.  If that bit has a value of\n            '1' then that port is included in the set of\n            ports; the port is not included if its bit has a\n            value of '0'.\n            \n            A port number is the value of dot1dBasePort for\n            the port in the BRIDGE-MIB (RFC 1493).",
                      "x-yang-type": "cisco-tc:CiscoPortList"
                    }
                  }
                },
                "example": {
                  "CISCO-VLAN-MEMBERSHIP-MIB:vmMembershipSummaryEntry": {
                    "vmMembershipSummaryVlanIndex": "192.168.1.1",
                    "vmMembershipSummaryMemberPorts": "192.168.1.1",
                    "vmMembershipSummaryMember2kPorts": "192.168.1.1"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-vmMembershipSummaryEntry-4"
      },
      "x-yang-path": "/vmMembershipSummaryEntry={vmMembershipSummaryVlanIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "vmMembershipSummaryVlanIndex"
      ]
    },
    "/data/CISCO-VLAN-MEMBERSHIP-MIB:vmMembershipEntry": {
      "get": {
        "summary": "Get vmMembershipEntry list",
        "description": "Retrieve list of vmMembershipEntry entries from MIB",
        "tags": [
          "CISCO-VLAN-MEMBERSHIP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An entry (conceptual row) in the vmMembershipTable.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "ifIndex": {
                        "type": "string",
                        "description": "ifIndex",
                        "x-yang-type": "leafref"
                      },
                      "vmVlanType": {
                        "type": "string",
                        "description": "The type of VLAN membership assigned to this port.\n            A port with static vlan membership is assigned to a\n            single VLAN directly. A port with dynamic membership\n            is assigned a single VLAN based on content of packets\n            received on the port and via VQP queries to VMPS.\n            A port with multiVlan membership may be assigned to\n            one or more VLANs directly.\n            \n            A static or dynamic port membership is specified\n            by the value of vmVlan. A multiVlan port membership is\n            specified by the value of vmVlans."
                      },
                      "vmVlan": {
                        "type": "integer",
                        "description": "The VLAN id of the VLAN the port is assigned to\n            when vmVlanType is set to static or dynamic.\n            This object is not instantiated if not applicable.\n            \n            The value may be 0 if the port is not assigned\n            to a VLAN.\n            \n            If vmVlanType is static, the port is always\n            assigned to a VLAN and the object may not be\n            set to 0.\n            \n            If vmVlanType is dynamic the object's value is\n            0 if the port is currently not assigned to a VLAN.\n            In addition, the object may be set to 0 only.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "vmPortStatus": {
                        "type": "string",
                        "description": "An indication of the current VLAN status of the port.\n            A status of inactive(1) indicates that a dynamic port\n            does not yet have a VLAN assigned, or a port is \n            assigned to a VLAN that is currently not active. A \n            status of active(2) indicates that the currently \n            assigned VLAN is active. A status of shutdown(3) \n            indicates that the port has been disabled as a result\n            of VQP shutdown response."
                      },
                      "vmVlans": {
                        "type": "string",
                        "description": "The VLAN(s) the port is assigned to when the\n            port's vmVlanType is set to multiVlan.\n            This object is not instantiated if not applicable.\n            \n            The port is always assigned to one or more VLANs\n            and the object may not be set so that there are\n            no vlans assigned.\n            \n            Each octet within the value of this object specifies a\n            set of eight VLANs, with the first octet specifying\n            VLAN id 1 through 8, the second octet specifying VLAN\n            ids 9 through 16, etc.   Within each octet, the most\n            significant bit represents the lowest numbered\n            VLAN id, and the least significant bit represents the\n            highest numbered VLAN id.  Thus, each VLAN of the\n            port is represented by a single bit within the\n            value of this object.  If that bit has a value of\n            '1' then that VLAN is included in the set of\n            VLANs; the VLAN is not included if its bit has a\n            value of '0'.",
                        "format": "binary"
                      },
                      "vmVlans2k": {
                        "type": "string",
                        "description": "The VLAN(s) the port is assigned to when the\n            port's vmVlanType is set to multiVlan.\n            This object is not instantiated if not applicable.\n            \n            The port is always assigned to one or more VLANs\n            and the object may not be set so that there are\n            no vlans assigned.\n            \n            Each octet within the value of this object specifies a\n            set of eight VLANs, with the first octet specifying\n            VLAN id 1024 through 1031, the second octet specifying \n            VLAN ids 1032 through 1039, etc.  Within each octet, \n            the most significant bit represents the lowest \n            numbered VLAN id, and the least significant bit \n            represents the highest numbered VLAN id.  Thus, each \n            VLAN of the port is represented by a single bit within\n            the value of this object.  If that bit has a value of\n            '1' then that VLAN is included in the set of\n            VLANs; the VLAN is not included if its bit has a\n            value of '0'.",
                        "format": "binary"
                      },
                      "vmVlans3k": {
                        "type": "string",
                        "description": "The VLAN(s) the port is assigned to when the\n            port's vmVlanType is set to multiVlan.\n            This object is not instantiated if not applicable.\n            \n            The port is always assigned to one or more VLANs\n            and the object may not be set so that there are\n            no vlans assigned.\n            \n            Each octet within the value of this object specifies a\n            set of eight VLANs, with the first octet specifying\n            VLAN id 2048 through 2055, the second octet specifying \n            VLAN ids 2056 through 2063, etc.   Within each octet, \n            the most significant bit represents the lowest \n            numbered VLAN id, and the least significant bit \n            represents the highest numbered VLAN id.  Thus, each\n            VLAN of the port is represented by a single bit within\n            the value of this object.  If that bit has a value of\n            '1' then that VLAN is included in the set of\n            VLANs; the VLAN is not included if its bit has a\n            value of '0'.",
                        "format": "binary"
                      },
                      "vmVlans4k": {
                        "type": "string",
                        "description": "The VLAN(s) the port is assigned to when the\n            port's vmVlanType is set to multiVlan.\n            This object is not instantiated if not applicable.\n            \n            The port is always assigned to one or more VLANs\n            and the object may not be set so that there are\n            no vlans assigned.\n            \n            Each octet within the value of this object specifies a\n            set of eight VLANs, with the first octet specifying\n            VLAN id 3072 through 3079, the second octet specifying \n            VLAN ids 3040 through 3047, etc.   Within each octet, \n            the most significant bit represents the lowest \n            numbered VLAN id, and the least significant bit \n            represents the highest numbered VLAN id.  Thus, each\n            VLAN of the port is represented by a single bit within\n            the value of this object.  If that bit has a value of\n            '1' then that VLAN is included in the set of\n            VLANs; the VLAN is not included if its bit has a\n            value of '0'.",
                        "format": "binary"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VLAN-MEMBERSHIP-MIB:vmMembershipEntry": [
                    {
                      "ifIndex": "example-string",
                      "vmVlanType": "ethernetCsmacd(6)",
                      "vmVlan": -2147483648,
                      "vmPortStatus": "up(1)",
                      "vmVlans": "example-string",
                      "vmVlans2k": "example-string",
                      "vmVlans3k": "example-string",
                      "vmVlans4k": "example-string"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-vmMembershipEntry-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": "/vmMembershipEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VLAN-MEMBERSHIP-MIB:vmMembershipEntry={ifIndex}": {
      "get": {
        "summary": "Get vmMembershipEntry entry",
        "description": "Retrieve specific vmMembershipEntry entry by key from MIB",
        "tags": [
          "CISCO-VLAN-MEMBERSHIP-MIB"
        ],
        "parameters": [
          {
            "name": "ifIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "1"
          },
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "ifIndex": {
                      "type": "string",
                      "description": "ifIndex",
                      "x-yang-type": "leafref"
                    },
                    "vmVlanType": {
                      "type": "string",
                      "description": "The type of VLAN membership assigned to this port.\n            A port with static vlan membership is assigned to a\n            single VLAN directly. A port with dynamic membership\n            is assigned a single VLAN based on content of packets\n            received on the port and via VQP queries to VMPS.\n            A port with multiVlan membership may be assigned to\n            one or more VLANs directly.\n            \n            A static or dynamic port membership is specified\n            by the value of vmVlan. A multiVlan port membership is\n            specified by the value of vmVlans."
                    },
                    "vmVlan": {
                      "type": "integer",
                      "description": "The VLAN id of the VLAN the port is assigned to\n            when vmVlanType is set to static or dynamic.\n            This object is not instantiated if not applicable.\n            \n            The value may be 0 if the port is not assigned\n            to a VLAN.\n            \n            If vmVlanType is static, the port is always\n            assigned to a VLAN and the object may not be\n            set to 0.\n            \n            If vmVlanType is dynamic the object's value is\n            0 if the port is currently not assigned to a VLAN.\n            In addition, the object may be set to 0 only.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "vmPortStatus": {
                      "type": "string",
                      "description": "An indication of the current VLAN status of the port.\n            A status of inactive(1) indicates that a dynamic port\n            does not yet have a VLAN assigned, or a port is \n            assigned to a VLAN that is currently not active. A \n            status of active(2) indicates that the currently \n            assigned VLAN is active. A status of shutdown(3) \n            indicates that the port has been disabled as a result\n            of VQP shutdown response."
                    },
                    "vmVlans": {
                      "type": "string",
                      "description": "The VLAN(s) the port is assigned to when the\n            port's vmVlanType is set to multiVlan.\n            This object is not instantiated if not applicable.\n            \n            The port is always assigned to one or more VLANs\n            and the object may not be set so that there are\n            no vlans assigned.\n            \n            Each octet within the value of this object specifies a\n            set of eight VLANs, with the first octet specifying\n            VLAN id 1 through 8, the second octet specifying VLAN\n            ids 9 through 16, etc.   Within each octet, the most\n            significant bit represents the lowest numbered\n            VLAN id, and the least significant bit represents the\n            highest numbered VLAN id.  Thus, each VLAN of the\n            port is represented by a single bit within the\n            value of this object.  If that bit has a value of\n            '1' then that VLAN is included in the set of\n            VLANs; the VLAN is not included if its bit has a\n            value of '0'.",
                      "format": "binary"
                    },
                    "vmVlans2k": {
                      "type": "string",
                      "description": "The VLAN(s) the port is assigned to when the\n            port's vmVlanType is set to multiVlan.\n            This object is not instantiated if not applicable.\n            \n            The port is always assigned to one or more VLANs\n            and the object may not be set so that there are\n            no vlans assigned.\n            \n            Each octet within the value of this object specifies a\n            set of eight VLANs, with the first octet specifying\n            VLAN id 1024 through 1031, the second octet specifying \n            VLAN ids 1032 through 1039, etc.  Within each octet, \n            the most significant bit represents the lowest \n            numbered VLAN id, and the least significant bit \n            represents the highest numbered VLAN id.  Thus, each \n            VLAN of the port is represented by a single bit within\n            the value of this object.  If that bit has a value of\n            '1' then that VLAN is included in the set of\n            VLANs; the VLAN is not included if its bit has a\n            value of '0'.",
                      "format": "binary"
                    },
                    "vmVlans3k": {
                      "type": "string",
                      "description": "The VLAN(s) the port is assigned to when the\n            port's vmVlanType is set to multiVlan.\n            This object is not instantiated if not applicable.\n            \n            The port is always assigned to one or more VLANs\n            and the object may not be set so that there are\n            no vlans assigned.\n            \n            Each octet within the value of this object specifies a\n            set of eight VLANs, with the first octet specifying\n            VLAN id 2048 through 2055, the second octet specifying \n            VLAN ids 2056 through 2063, etc.   Within each octet, \n            the most significant bit represents the lowest \n            numbered VLAN id, and the least significant bit \n            represents the highest numbered VLAN id.  Thus, each\n            VLAN of the port is represented by a single bit within\n            the value of this object.  If that bit has a value of\n            '1' then that VLAN is included in the set of\n            VLANs; the VLAN is not included if its bit has a\n            value of '0'.",
                      "format": "binary"
                    },
                    "vmVlans4k": {
                      "type": "string",
                      "description": "The VLAN(s) the port is assigned to when the\n            port's vmVlanType is set to multiVlan.\n            This object is not instantiated if not applicable.\n            \n            The port is always assigned to one or more VLANs\n            and the object may not be set so that there are\n            no vlans assigned.\n            \n            Each octet within the value of this object specifies a\n            set of eight VLANs, with the first octet specifying\n            VLAN id 3072 through 3079, the second octet specifying \n            VLAN ids 3040 through 3047, etc.   Within each octet, \n            the most significant bit represents the lowest \n            numbered VLAN id, and the least significant bit \n            represents the highest numbered VLAN id.  Thus, each\n            VLAN of the port is represented by a single bit within\n            the value of this object.  If that bit has a value of\n            '1' then that VLAN is included in the set of\n            VLANs; the VLAN is not included if its bit has a\n            value of '0'.",
                      "format": "binary"
                    }
                  }
                },
                "example": {
                  "CISCO-VLAN-MEMBERSHIP-MIB:vmMembershipEntry": {
                    "ifIndex": "example-string",
                    "vmVlanType": "ethernetCsmacd(6)",
                    "vmVlan": -2147483648,
                    "vmPortStatus": "up(1)",
                    "vmVlans": "example-string",
                    "vmVlans2k": "example-string",
                    "vmVlans3k": "example-string",
                    "vmVlans4k": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-vmMembershipEntry-4"
      },
      "x-yang-path": "/vmMembershipEntry={ifIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "ifIndex"
      ]
    },
    "/data/CISCO-VLAN-MEMBERSHIP-MIB:vmMembershipSummaryExtEntry": {
      "get": {
        "summary": "Get vmMembershipSummaryExtEntry list",
        "description": "Retrieve list of vmMembershipSummaryExtEntry entries from MIB",
        "tags": [
          "CISCO-VLAN-MEMBERSHIP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An entry (conceptual row) in the\n          vmMembershipSummaryExtTable.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "vmMembershipSummaryVlanIndex": {
                        "type": "string",
                        "description": "vmMembershipSummaryVlanIndex",
                        "x-yang-type": "leafref"
                      },
                      "vmMembershipPortRangeIndex": {
                        "type": "string",
                        "description": "The bridge port range index of this row.",
                        "x-yang-type": "cisco-tc:CiscoPortListRange"
                      },
                      "vmMembershipSummaryExtPorts": {
                        "type": "string",
                        "description": "The set of the device's member ports that belong\n            to the VLAN. It has the VLAN membership information\n            of up to 2k ports with the port number starting from\n            the information indicated in vmMembershipPortRangeIndex\n            object of the same row. For example, if the value\n            of vmMembershipPortRangeIndex is 'twoKto4K', the\n            port number indicated in this object starting from\n            2049 and ending to 4096. \n            \n            A port number is the value of dot1dBasePort for\n            the port in the BRIDGE-MIB (RFC 1493).",
                        "x-yang-type": "cisco-tc:CiscoPortList"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VLAN-MEMBERSHIP-MIB:vmMembershipSummaryExtEntry": [
                    {
                      "vmMembershipSummaryVlanIndex": "192.168.1.1",
                      "vmMembershipPortRangeIndex": "192.168.1.1",
                      "vmMembershipSummaryExtPorts": "192.168.1.1"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-vmMembershipSummaryExtEntry-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": "/vmMembershipSummaryExtEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VLAN-MEMBERSHIP-MIB:vmVoiceVlanEntry": {
      "get": {
        "summary": "Get vmVoiceVlanEntry list",
        "description": "Retrieve list of vmVoiceVlanEntry entries from MIB",
        "tags": [
          "CISCO-VLAN-MEMBERSHIP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An entry (conceptual row) in the vmVoiceVlanTable.\n          Only interfaces which support Voice Vlan feature\n          are shown.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "ifIndex": {
                        "type": "string",
                        "description": "ifIndex",
                        "x-yang-type": "leafref"
                      },
                      "vmVoiceVlanId": {
                        "type": "integer",
                        "description": "The Voice Vlan ID (VVID) to which this\n            port belongs to.\n            \n            0    -    The CDP packets transmitting \n                      through this port would contain\n                      Appliance VLAN-ID TLV with value \n                      of 0. VoIP and related packets \n                      are expected to be sent and \n                      received with VLAN-id=0 and an \n                      802.1p priority. \n            \n            1..4094 - The CDP packets transmitting\n                      through this port would contain\n                      Appliance VLAN-ID TLV with N.\n                      VoIP and related packets are\n                      expected to be sent and received\n                      with VLAN-id=N and an 802.1p\n                      priority.\n            \n            4095  -   The CDP packets transmitting\n                      through this port would contain\n                      Appliance VLAN-ID TLV with value\n                      of 4095. VoIP and related packets\n                      are expected to be sent and \n                      received untagged without an \n                      802.1p priority.\n            \n            4096  -   The CDP packets transmitting \n                      through this port would not \n                      include Appliance VLAN-ID TLV; \n                      or, if the VVID is not supported \n                      on the port, this MIB object will\n                      not be configurable and will \n                      return 4096.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "vmVoiceVlanCdpVerifyEnable": {
                        "type": "boolean",
                        "description": "Enable or Disable the feature of CDP message\n            verification of voice VLANs.\n            \n            true   - The voice VLAN vmVoiceVlan is enabled \n                     only after CDP messages are received \n                     from the IP phone.\n            \n            false -  The voice VLAN vmVoiceVlan is enabled\n                     as soon as the IP phone interface is\n                     up. There is no verification needed \n                     from CDP messages from the IP phone."
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VLAN-MEMBERSHIP-MIB:vmVoiceVlanEntry": [
                    {
                      "ifIndex": "example-string",
                      "vmVoiceVlanId": -2147483648,
                      "vmVoiceVlanCdpVerifyEnable": true
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-vmVoiceVlanEntry-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": "/vmVoiceVlanEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VLAN-MEMBERSHIP-MIB:vmVoiceVlanEntry={ifIndex}": {
      "get": {
        "summary": "Get vmVoiceVlanEntry entry",
        "description": "Retrieve specific vmVoiceVlanEntry entry by key from MIB",
        "tags": [
          "CISCO-VLAN-MEMBERSHIP-MIB"
        ],
        "parameters": [
          {
            "name": "ifIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "1"
          },
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "ifIndex": {
                      "type": "string",
                      "description": "ifIndex",
                      "x-yang-type": "leafref"
                    },
                    "vmVoiceVlanId": {
                      "type": "integer",
                      "description": "The Voice Vlan ID (VVID) to which this\n            port belongs to.\n            \n            0    -    The CDP packets transmitting \n                      through this port would contain\n                      Appliance VLAN-ID TLV with value \n                      of 0. VoIP and related packets \n                      are expected to be sent and \n                      received with VLAN-id=0 and an \n                      802.1p priority. \n            \n            1..4094 - The CDP packets transmitting\n                      through this port would contain\n                      Appliance VLAN-ID TLV with N.\n                      VoIP and related packets are\n                      expected to be sent and received\n                      with VLAN-id=N and an 802.1p\n                      priority.\n            \n            4095  -   The CDP packets transmitting\n                      through this port would contain\n                      Appliance VLAN-ID TLV with value\n                      of 4095. VoIP and related packets\n                      are expected to be sent and \n                      received untagged without an \n                      802.1p priority.\n            \n            4096  -   The CDP packets transmitting \n                      through this port would not \n                      include Appliance VLAN-ID TLV; \n                      or, if the VVID is not supported \n                      on the port, this MIB object will\n                      not be configurable and will \n                      return 4096.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "vmVoiceVlanCdpVerifyEnable": {
                      "type": "boolean",
                      "description": "Enable or Disable the feature of CDP message\n            verification of voice VLANs.\n            \n            true   - The voice VLAN vmVoiceVlan is enabled \n                     only after CDP messages are received \n                     from the IP phone.\n            \n            false -  The voice VLAN vmVoiceVlan is enabled\n                     as soon as the IP phone interface is\n                     up. There is no verification needed \n                     from CDP messages from the IP phone."
                    }
                  }
                },
                "example": {
                  "CISCO-VLAN-MEMBERSHIP-MIB:vmVoiceVlanEntry": {
                    "ifIndex": "example-string",
                    "vmVoiceVlanId": -2147483648,
                    "vmVoiceVlanCdpVerifyEnable": true
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-vmVoiceVlanEntry-4"
      },
      "x-yang-path": "/vmVoiceVlanEntry={ifIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "ifIndex"
      ]
    },
    "/data/CISCO-VLAN-MEMBERSHIP-MIB:vmMembershipSummaryExtTable/vmMembershipSummaryExtEntry={vmMembershipSummaryVlanIndex},{vmMembershipPortRangeIndex}": {
      "get": {
        "summary": "Get vmMembershipSummaryExtEntry entry",
        "description": "Retrieve specific vmMembershipSummaryExtEntry entry by key from MIB",
        "tags": [
          "CISCO-VLAN-MEMBERSHIP-MIB"
        ],
        "parameters": [
          {
            "name": "vmMembershipSummaryVlanIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "vmMembershipPortRangeIndex",
            "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": {
                    "vmMembershipSummaryVlanIndex": {
                      "type": "string",
                      "description": "vmMembershipSummaryVlanIndex",
                      "x-yang-type": "leafref"
                    },
                    "vmMembershipPortRangeIndex": {
                      "type": "string",
                      "description": "The bridge port range index of this row.",
                      "x-yang-type": "cisco-tc:CiscoPortListRange"
                    },
                    "vmMembershipSummaryExtPorts": {
                      "type": "string",
                      "description": "The set of the device's member ports that belong\n            to the VLAN. It has the VLAN membership information\n            of up to 2k ports with the port number starting from\n            the information indicated in vmMembershipPortRangeIndex\n            object of the same row. For example, if the value\n            of vmMembershipPortRangeIndex is 'twoKto4K', the\n            port number indicated in this object starting from\n            2049 and ending to 4096. \n            \n            A port number is the value of dot1dBasePort for\n            the port in the BRIDGE-MIB (RFC 1493).",
                      "x-yang-type": "cisco-tc:CiscoPortList"
                    }
                  }
                },
                "example": {
                  "CISCO-VLAN-MEMBERSHIP-MIB:vmMembershipSummaryExtEntry": {
                    "vmMembershipSummaryVlanIndex": "192.168.1.1",
                    "vmMembershipPortRangeIndex": "192.168.1.1",
                    "vmMembershipSummaryExtPorts": "192.168.1.1"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-vmMembershipSummaryExtEntry-2"
      },
      "x-yang-path": "/vmMembershipSummaryExtTable/vmMembershipSummaryExtEntry={vmMembershipSummaryVlanIndex vmMembershipPortRangeIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "vmMembershipSummaryVlanIndex vmMembershipPortRangeIndex"
      ]
    },
    "/data/CISCO-VLAN-MEMBERSHIP-MIB:vmMembershipSummaryExtEntry={vmMembershipSummaryVlanIndex},{vmMembershipPortRangeIndex}": {
      "get": {
        "summary": "Get vmMembershipSummaryExtEntry entry",
        "description": "Retrieve specific vmMembershipSummaryExtEntry entry by key from MIB",
        "tags": [
          "CISCO-VLAN-MEMBERSHIP-MIB"
        ],
        "parameters": [
          {
            "name": "vmMembershipSummaryVlanIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "vmMembershipPortRangeIndex",
            "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": {
                    "vmMembershipSummaryVlanIndex": {
                      "type": "string",
                      "description": "vmMembershipSummaryVlanIndex",
                      "x-yang-type": "leafref"
                    },
                    "vmMembershipPortRangeIndex": {
                      "type": "string",
                      "description": "The bridge port range index of this row.",
                      "x-yang-type": "cisco-tc:CiscoPortListRange"
                    },
                    "vmMembershipSummaryExtPorts": {
                      "type": "string",
                      "description": "The set of the device's member ports that belong\n            to the VLAN. It has the VLAN membership information\n            of up to 2k ports with the port number starting from\n            the information indicated in vmMembershipPortRangeIndex\n            object of the same row. For example, if the value\n            of vmMembershipPortRangeIndex is 'twoKto4K', the\n            port number indicated in this object starting from\n            2049 and ending to 4096. \n            \n            A port number is the value of dot1dBasePort for\n            the port in the BRIDGE-MIB (RFC 1493).",
                      "x-yang-type": "cisco-tc:CiscoPortList"
                    }
                  }
                },
                "example": {
                  "CISCO-VLAN-MEMBERSHIP-MIB:vmMembershipSummaryExtEntry": {
                    "vmMembershipSummaryVlanIndex": "192.168.1.1",
                    "vmMembershipPortRangeIndex": "192.168.1.1",
                    "vmMembershipSummaryExtPorts": "192.168.1.1"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-vmMembershipSummaryExtEntry-4"
      },
      "x-yang-path": "/vmMembershipSummaryExtEntry={vmMembershipSummaryVlanIndex vmMembershipPortRangeIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "vmMembershipSummaryVlanIndex vmMembershipPortRangeIndex"
      ]
    }
  },
  "components": {
    "schemas": {
      "CISCO-VLAN-MEMBERSHIP-MIB_CISCO-VLAN-MEMBERSHIP-MIB": {
        "type": "object",
        "description": "CISCO-VLAN-MEMBERSHIP-MIB",
        "properties": {
          "vmVmpsEntry": {
            "type": "array",
            "description": "An entry (conceptual row) in the vmVmpsTable.",
            "items": {
              "type": "object",
              "properties": {
                "vmVmpsIpAddress": {
                  "type": "string",
                  "description": "The Ip Address of the VMPS.",
                  "format": "inet:ipv4-address",
                  "readOnly": true
                },
                "vmVmpsPrimary": {
                  "type": "boolean",
                  "description": "The status of the VMPS. Setting this value\n            to true will make this VMPS the primary server\n            and make the switch use this as the current server.\n            Setting this entry to true causes other rows\n            to transition to false. Attempting to write\n            a value of false after creation will result in\n            a return of bad value. Deleting an entry whose\n            value is true will result in the first entry\n            in the table being set to true.",
                  "readOnly": true
                },
                "vmVmpsRowStatus": {
                  "type": "string",
                  "description": "The status of this conceptual row.",
                  "x-yang-type": "snmpv2-tc:RowStatus",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "vmMembershipSummaryEntry": {
            "type": "array",
            "description": "An entry (conceptual row) in the\n          vmMembershipSummaryTable.",
            "items": {
              "type": "object",
              "properties": {
                "vmMembershipSummaryVlanIndex": {
                  "type": "string",
                  "description": "The VLAN id of the VLAN.",
                  "x-yang-type": "cisco-vtp:VlanIndex",
                  "readOnly": true
                },
                "vmMembershipSummaryMemberPorts": {
                  "type": "string",
                  "description": "The set of the device's member ports that belong\n            to the VLAN.\n            \n            Each octet within the value of this object specifies a\n            set of eight ports, with the first octet specifying ports\n            1 through 8, the second octet specifying ports 9\n            through 16, etc.   Within each octet, the most\n            significant bit represents the lowest numbered\n            port, and the least significant bit represents the\n            highest numbered port.  Thus, each port of the\n            VLAN is represented by a single bit within the\n            value of this object.  If that bit has a value of\n            '1' then that port is included in the set of\n            ports; the port is not included if its bit has a\n            value of '0'.\n            \n            A port number is the value of dot1dBasePort for\n            the port in the BRIDGE-MIB (RFC 1493).",
                  "format": "binary",
                  "readOnly": true
                },
                "vmMembershipSummaryMember2kPorts": {
                  "type": "string",
                  "description": "The set of the device's member ports that belong\n            to the VLAN. It has the VLAN membership information\n            of up to 2048 ports with the port number from 1 to \n            2048.\n            \n            Each octet within the value of this object specifies a\n            set of eight ports, with the first octet specifying \n            ports 1 through 8, the second octet specifying ports 9\n            through 16, etc.   Within each octet, the most\n            significant bit represents the lowest numbered\n            port, and the least significant bit represents the\n            highest numbered port.  Thus, each port of the\n            VLAN is represented by a single bit within the\n            value of this object.  If that bit has a value of\n            '1' then that port is included in the set of\n            ports; the port is not included if its bit has a\n            value of '0'.\n            \n            A port number is the value of dot1dBasePort for\n            the port in the BRIDGE-MIB (RFC 1493).",
                  "x-yang-type": "cisco-tc:CiscoPortList",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "vmMembershipEntry": {
            "type": "array",
            "description": "An entry (conceptual row) in the vmMembershipTable.",
            "items": {
              "type": "object",
              "properties": {
                "ifIndex": {
                  "type": "string",
                  "description": "ifIndex",
                  "x-yang-type": "leafref",
                  "readOnly": true
                },
                "vmVlanType": {
                  "type": "string",
                  "description": "The type of VLAN membership assigned to this port.\n            A port with static vlan membership is assigned to a\n            single VLAN directly. A port with dynamic membership\n            is assigned a single VLAN based on content of packets\n            received on the port and via VQP queries to VMPS.\n            A port with multiVlan membership may be assigned to\n            one or more VLANs directly.\n            \n            A static or dynamic port membership is specified\n            by the value of vmVlan. A multiVlan port membership is\n            specified by the value of vmVlans.",
                  "readOnly": true
                },
                "vmVlan": {
                  "type": "integer",
                  "description": "The VLAN id of the VLAN the port is assigned to\n            when vmVlanType is set to static or dynamic.\n            This object is not instantiated if not applicable.\n            \n            The value may be 0 if the port is not assigned\n            to a VLAN.\n            \n            If vmVlanType is static, the port is always\n            assigned to a VLAN and the object may not be\n            set to 0.\n            \n            If vmVlanType is dynamic the object's value is\n            0 if the port is currently not assigned to a VLAN.\n            In addition, the object may be set to 0 only.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "vmPortStatus": {
                  "type": "string",
                  "description": "An indication of the current VLAN status of the port.\n            A status of inactive(1) indicates that a dynamic port\n            does not yet have a VLAN assigned, or a port is \n            assigned to a VLAN that is currently not active. A \n            status of active(2) indicates that the currently \n            assigned VLAN is active. A status of shutdown(3) \n            indicates that the port has been disabled as a result\n            of VQP shutdown response.",
                  "readOnly": true
                },
                "vmVlans": {
                  "type": "string",
                  "description": "The VLAN(s) the port is assigned to when the\n            port's vmVlanType is set to multiVlan.\n            This object is not instantiated if not applicable.\n            \n            The port is always assigned to one or more VLANs\n            and the object may not be set so that there are\n            no vlans assigned.\n            \n            Each octet within the value of this object specifies a\n            set of eight VLANs, with the first octet specifying\n            VLAN id 1 through 8, the second octet specifying VLAN\n            ids 9 through 16, etc.   Within each octet, the most\n            significant bit represents the lowest numbered\n            VLAN id, and the least significant bit represents the\n            highest numbered VLAN id.  Thus, each VLAN of the\n            port is represented by a single bit within the\n            value of this object.  If that bit has a value of\n            '1' then that VLAN is included in the set of\n            VLANs; the VLAN is not included if its bit has a\n            value of '0'.",
                  "format": "binary",
                  "readOnly": true
                },
                "vmVlans2k": {
                  "type": "string",
                  "description": "The VLAN(s) the port is assigned to when the\n            port's vmVlanType is set to multiVlan.\n            This object is not instantiated if not applicable.\n            \n            The port is always assigned to one or more VLANs\n            and the object may not be set so that there are\n            no vlans assigned.\n            \n            Each octet within the value of this object specifies a\n            set of eight VLANs, with the first octet specifying\n            VLAN id 1024 through 1031, the second octet specifying \n            VLAN ids 1032 through 1039, etc.  Within each octet, \n            the most significant bit represents the lowest \n            numbered VLAN id, and the least significant bit \n            represents the highest numbered VLAN id.  Thus, each \n            VLAN of the port is represented by a single bit within\n            the value of this object.  If that bit has a value of\n            '1' then that VLAN is included in the set of\n            VLANs; the VLAN is not included if its bit has a\n            value of '0'.",
                  "format": "binary",
                  "readOnly": true
                },
                "vmVlans3k": {
                  "type": "string",
                  "description": "The VLAN(s) the port is assigned to when the\n            port's vmVlanType is set to multiVlan.\n            This object is not instantiated if not applicable.\n            \n            The port is always assigned to one or more VLANs\n            and the object may not be set so that there are\n            no vlans assigned.\n            \n            Each octet within the value of this object specifies a\n            set of eight VLANs, with the first octet specifying\n            VLAN id 2048 through 2055, the second octet specifying \n            VLAN ids 2056 through 2063, etc.   Within each octet, \n            the most significant bit represents the lowest \n            numbered VLAN id, and the least significant bit \n            represents the highest numbered VLAN id.  Thus, each\n            VLAN of the port is represented by a single bit within\n            the value of this object.  If that bit has a value of\n            '1' then that VLAN is included in the set of\n            VLANs; the VLAN is not included if its bit has a\n            value of '0'.",
                  "format": "binary",
                  "readOnly": true
                },
                "vmVlans4k": {
                  "type": "string",
                  "description": "The VLAN(s) the port is assigned to when the\n            port's vmVlanType is set to multiVlan.\n            This object is not instantiated if not applicable.\n            \n            The port is always assigned to one or more VLANs\n            and the object may not be set so that there are\n            no vlans assigned.\n            \n            Each octet within the value of this object specifies a\n            set of eight VLANs, with the first octet specifying\n            VLAN id 3072 through 3079, the second octet specifying \n            VLAN ids 3040 through 3047, etc.   Within each octet, \n            the most significant bit represents the lowest \n            numbered VLAN id, and the least significant bit \n            represents the highest numbered VLAN id.  Thus, each\n            VLAN of the port is represented by a single bit within\n            the value of this object.  If that bit has a value of\n            '1' then that VLAN is included in the set of\n            VLANs; the VLAN is not included if its bit has a\n            value of '0'.",
                  "format": "binary",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "vmMembershipSummaryExtEntry": {
            "type": "array",
            "description": "An entry (conceptual row) in the\n          vmMembershipSummaryExtTable.",
            "items": {
              "type": "object",
              "properties": {
                "vmMembershipSummaryVlanIndex": {
                  "type": "string",
                  "description": "vmMembershipSummaryVlanIndex",
                  "x-yang-type": "leafref",
                  "readOnly": true
                },
                "vmMembershipPortRangeIndex": {
                  "type": "string",
                  "description": "The bridge port range index of this row.",
                  "x-yang-type": "cisco-tc:CiscoPortListRange",
                  "readOnly": true
                },
                "vmMembershipSummaryExtPorts": {
                  "type": "string",
                  "description": "The set of the device's member ports that belong\n            to the VLAN. It has the VLAN membership information\n            of up to 2k ports with the port number starting from\n            the information indicated in vmMembershipPortRangeIndex\n            object of the same row. For example, if the value\n            of vmMembershipPortRangeIndex is 'twoKto4K', the\n            port number indicated in this object starting from\n            2049 and ending to 4096. \n            \n            A port number is the value of dot1dBasePort for\n            the port in the BRIDGE-MIB (RFC 1493).",
                  "x-yang-type": "cisco-tc:CiscoPortList",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "vmVoiceVlanEntry": {
            "type": "array",
            "description": "An entry (conceptual row) in the vmVoiceVlanTable.\n          Only interfaces which support Voice Vlan feature\n          are shown.",
            "items": {
              "type": "object",
              "properties": {
                "ifIndex": {
                  "type": "string",
                  "description": "ifIndex",
                  "x-yang-type": "leafref",
                  "readOnly": true
                },
                "vmVoiceVlanId": {
                  "type": "integer",
                  "description": "The Voice Vlan ID (VVID) to which this\n            port belongs to.\n            \n            0    -    The CDP packets transmitting \n                      through this port would contain\n                      Appliance VLAN-ID TLV with value \n                      of 0. VoIP and related packets \n                      are expected to be sent and \n                      received with VLAN-id=0 and an \n                      802.1p priority. \n            \n            1..4094 - The CDP packets transmitting\n                      through this port would contain\n                      Appliance VLAN-ID TLV with N.\n                      VoIP and related packets are\n                      expected to be sent and received\n                      with VLAN-id=N and an 802.1p\n                      priority.\n            \n            4095  -   The CDP packets transmitting\n                      through this port would contain\n                      Appliance VLAN-ID TLV with value\n                      of 4095. VoIP and related packets\n                      are expected to be sent and \n                      received untagged without an \n                      802.1p priority.\n            \n            4096  -   The CDP packets transmitting \n                      through this port would not \n                      include Appliance VLAN-ID TLV; \n                      or, if the VVID is not supported \n                      on the port, this MIB object will\n                      not be configurable and will \n                      return 4096.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "vmVoiceVlanCdpVerifyEnable": {
                  "type": "boolean",
                  "description": "Enable or Disable the feature of CDP message\n            verification of voice VLANs.\n            \n            true   - The voice VLAN vmVoiceVlan is enabled \n                     only after CDP messages are received \n                     from the IP phone.\n            \n            false -  The voice VLAN vmVoiceVlan is enabled\n                     as soon as the IP phone interface is\n                     up. There is no verification needed \n                     from CDP messages from the IP phone.",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "vmVmps": {
            "type": "object",
            "description": "The VLAN Query Protocol (VQP) version supported on\n          the device. VQP is the protocol used to query\n          VLAN Membership Policy Server (VMPS) for VLAN\n          membership assignments of dynamic VLAN ports.\n          A VMPS provides VLAN membership policy\n          assignments based on the content of the packets\n          received on a port.",
            "properties": {
              "vmVmpsVQPVersion": {
                "type": "integer",
                "description": "The VLAN Query Protocol (VQP) version supported on\n          the device. VQP is the protocol used to query\n          VLAN Membership Policy Server (VMPS) for VLAN\n          membership assignments of dynamic VLAN ports.\n          A VMPS provides VLAN membership policy\n          assignments based on the content of the packets\n          received on a port.",
                "minimum": -2147483648,
                "maximum": 2147483647,
                "readOnly": true
              },
              "vmVmpsRetries": {
                "type": "integer",
                "description": "The number of retries for VQP requests to a VMPS before\n          using the next available VMPS.",
                "minimum": -2147483648,
                "maximum": 2147483647,
                "readOnly": true
              },
              "vmVmpsReconfirmInterval": {
                "type": "integer",
                "description": "The switch will reconfirm membership of addresses on\n          each port with VMPS periodically. This object specifies\n          the interval to perform reconfirmation. If the value is\n          set to 0, the switch does not reconfirm membership with\n          VMPS.",
                "minimum": -2147483648,
                "maximum": 2147483647,
                "readOnly": true
              },
              "vmVmpsReconfirm": {
                "type": "string",
                "description": "Setting this object to execute(2) causes the switch\n          to reconfirm membership of every dynamic port.\n          Reading this object always return ready(1).",
                "readOnly": true
              },
              "vmVmpsReconfirmResult": {
                "type": "string",
                "description": "This object returns the result of the last request\n          that sets vmVmpsReconfirm to execute(2). The\n          semantics of the possible results are as follows:\n          \n               other(1)           - none of following\n               inProgress(2)      - reconfirm in progress\n               success(3)         - reconfirm completed successfully\n               noResponse(4)      - reconfirm failed because no\n                                    VMPS responded\n               noVmps(5)          - No VMPS configured\n               noDynamicPort(6)   - No dynamic ports configured\n               noHostConnected(7) - No hosts on dynamic ports",
                "readOnly": true
              },
              "vmVmpsCurrent": {
                "type": "string",
                "description": "This is the IpAddress of the current VMPS used.",
                "format": "inet:ipv4-address",
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "vmMembership": {
            "type": "object",
            "description": "vmMembership",
            "properties": {
              "vmVlanCreationMode": {
                "type": "string",
                "description": "This object is used to determine whether or not\n          a non-existing VLAN will be created automatically\n          by the system after assigned to a port.\n          \n          automatic(1):  a non-existing VLAN will be created\n                         automatically by the system after\n                         assigned to a port.\n          \n          manual(2):     a non-existing VLAN will not be created\n                         automatically by the system and need to be\n                         manually created by the users after assigned\n                         to a port.",
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "vmStatistics": {
            "type": "object",
            "description": "The total number of VQP requests sent by this device\n          to all VMPS since last system re-initialization.",
            "properties": {
              "vmVQPQueries": {
                "type": "integer",
                "description": "The total number of VQP requests sent by this device\n          to all VMPS since last system re-initialization.",
                "minimum": 0,
                "maximum": 4294967295,
                "readOnly": true
              },
              "vmVQPResponses": {
                "type": "integer",
                "description": "The number of VQP responses received by this device\n          from all VMPS since last system re-initialization.",
                "minimum": 0,
                "maximum": 4294967295,
                "readOnly": true
              },
              "vmVmpsChanges": {
                "type": "integer",
                "description": "The number of times, since last system\n          re-initialization, the current VMPS was changed. The\n          current VMPS is changed whenever the VMPS fails to \n          response after vmVmpsRetries of a VQP request.",
                "minimum": 0,
                "maximum": 4294967295,
                "readOnly": true
              },
              "vmVQPShutdown": {
                "type": "integer",
                "description": "The number of times, since last system\n          re-initialization, a VQP response indicates \n          'shutdown'. A 'shutdown' response is a result of \n          the membership policy configured at a VMPS\n          by the administrator.",
                "minimum": 0,
                "maximum": 4294967295,
                "readOnly": true
              },
              "vmVQPDenied": {
                "type": "integer",
                "description": "The number of times, since last system\n          re-initialization, a VQP response indicates \n          'denied'. A 'denied' response is a result of \n          the membership policy configured at a VMPS\n          by the administrator.",
                "minimum": 0,
                "maximum": 4294967295,
                "readOnly": true
              },
              "vmVQPWrongDomain": {
                "type": "integer",
                "description": "The number of times, since last system\n          re-initialization, a VQP response indicates wrong \n          management domain. A wrong management domain \n          response indicates that the VMPS used serves a \n          management domain that is different\n          from the device's management domain.",
                "minimum": 0,
                "maximum": 4294967295,
                "readOnly": true
              },
              "vmVQPWrongVersion": {
                "type": "integer",
                "description": "The number of times, since last system\n          re-initialization, a VQP response indicates wrong \n          VQP version. A wrong VQP version response \n          indicates that the VMPS used supports a VQP \n          version that is different from the device's \n          VQP version.",
                "minimum": 0,
                "maximum": 4294967295,
                "readOnly": true
              },
              "vmInsufficientResources": {
                "type": "integer",
                "description": "The number of times, since last system\n          re-initialization, a VQP response indicates \n          insufficient resources. An insufficient resources \n          response indicates that the VMPS used does not \n          have the required resources to verify the\n          membership assignment requested.",
                "minimum": 0,
                "maximum": 4294967295,
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "vmStatus": {
            "type": "object",
            "description": "An indication of whether the notifications/traps\n          defined in this MIB are enabled.",
            "properties": {
              "vmNotificationsEnabled": {
                "type": "boolean",
                "description": "An indication of whether the notifications/traps\n          defined in this MIB are enabled.",
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "vmVmpsTable": {
            "type": "object",
            "description": "A table of VMPS to use. The device will use\n        the the primary VMPS by default. If the\n        device is unable to reach the primary server\n        after vmVmpsRetries retries, it uses the first\n        secondary server in the table until it runs out\n        of secondary servers, in which case it will return\n        to using the primary server. Entries in this table\n        may be created and deleted via this MIB or\n        the management console on a device.",
            "properties": {
              "vmVmpsEntry": {
                "type": "array",
                "description": "An entry (conceptual row) in the vmVmpsTable.",
                "items": {
                  "type": "object",
                  "properties": {
                    "vmVmpsIpAddress": {
                      "type": "string",
                      "description": "The Ip Address of the VMPS.",
                      "format": "inet:ipv4-address",
                      "readOnly": true
                    },
                    "vmVmpsPrimary": {
                      "type": "boolean",
                      "description": "The status of the VMPS. Setting this value\n            to true will make this VMPS the primary server\n            and make the switch use this as the current server.\n            Setting this entry to true causes other rows\n            to transition to false. Attempting to write\n            a value of false after creation will result in\n            a return of bad value. Deleting an entry whose\n            value is true will result in the first entry\n            in the table being set to true.",
                      "readOnly": true
                    },
                    "vmVmpsRowStatus": {
                      "type": "string",
                      "description": "The status of this conceptual row.",
                      "x-yang-type": "snmpv2-tc:RowStatus",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "vmMembershipSummaryTable": {
            "type": "object",
            "description": "A summary of VLAN membership of non-trunk\n        bridge ports. This is a convenience table\n        for retrieving VLAN membership information.\n        \n        A row is created for a VLAN if:\n        a) the VLAN exists, or\n        b) a port is assigned to a non-existent VLAN.\n        \n        VLAN membership can only be modified via the\n        vmMembershipTable.",
            "properties": {
              "vmMembershipSummaryEntry": {
                "type": "array",
                "description": "An entry (conceptual row) in the\n          vmMembershipSummaryTable.",
                "items": {
                  "type": "object",
                  "properties": {
                    "vmMembershipSummaryVlanIndex": {
                      "type": "string",
                      "description": "The VLAN id of the VLAN.",
                      "x-yang-type": "cisco-vtp:VlanIndex",
                      "readOnly": true
                    },
                    "vmMembershipSummaryMemberPorts": {
                      "type": "string",
                      "description": "The set of the device's member ports that belong\n            to the VLAN.\n            \n            Each octet within the value of this object specifies a\n            set of eight ports, with the first octet specifying ports\n            1 through 8, the second octet specifying ports 9\n            through 16, etc.   Within each octet, the most\n            significant bit represents the lowest numbered\n            port, and the least significant bit represents the\n            highest numbered port.  Thus, each port of the\n            VLAN is represented by a single bit within the\n            value of this object.  If that bit has a value of\n            '1' then that port is included in the set of\n            ports; the port is not included if its bit has a\n            value of '0'.\n            \n            A port number is the value of dot1dBasePort for\n            the port in the BRIDGE-MIB (RFC 1493).",
                      "format": "binary",
                      "readOnly": true
                    },
                    "vmMembershipSummaryMember2kPorts": {
                      "type": "string",
                      "description": "The set of the device's member ports that belong\n            to the VLAN. It has the VLAN membership information\n            of up to 2048 ports with the port number from 1 to \n            2048.\n            \n            Each octet within the value of this object specifies a\n            set of eight ports, with the first octet specifying \n            ports 1 through 8, the second octet specifying ports 9\n            through 16, etc.   Within each octet, the most\n            significant bit represents the lowest numbered\n            port, and the least significant bit represents the\n            highest numbered port.  Thus, each port of the\n            VLAN is represented by a single bit within the\n            value of this object.  If that bit has a value of\n            '1' then that port is included in the set of\n            ports; the port is not included if its bit has a\n            value of '0'.\n            \n            A port number is the value of dot1dBasePort for\n            the port in the BRIDGE-MIB (RFC 1493).",
                      "x-yang-type": "cisco-tc:CiscoPortList",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "vmMembershipTable": {
            "type": "object",
            "description": "A table for configuring VLAN port membership.\n        There is one row for each bridge port that is\n        assigned to a static or dynamic access port. Trunk\n        ports are not  represented in this table.  An entry\n        may be created and deleted when ports are created or\n        deleted via SNMP or the management console on a \n        device.",
            "properties": {
              "vmMembershipEntry": {
                "type": "array",
                "description": "An entry (conceptual row) in the vmMembershipTable.",
                "items": {
                  "type": "object",
                  "properties": {
                    "ifIndex": {
                      "type": "string",
                      "description": "ifIndex",
                      "x-yang-type": "leafref",
                      "readOnly": true
                    },
                    "vmVlanType": {
                      "type": "string",
                      "description": "The type of VLAN membership assigned to this port.\n            A port with static vlan membership is assigned to a\n            single VLAN directly. A port with dynamic membership\n            is assigned a single VLAN based on content of packets\n            received on the port and via VQP queries to VMPS.\n            A port with multiVlan membership may be assigned to\n            one or more VLANs directly.\n            \n            A static or dynamic port membership is specified\n            by the value of vmVlan. A multiVlan port membership is\n            specified by the value of vmVlans.",
                      "readOnly": true
                    },
                    "vmVlan": {
                      "type": "integer",
                      "description": "The VLAN id of the VLAN the port is assigned to\n            when vmVlanType is set to static or dynamic.\n            This object is not instantiated if not applicable.\n            \n            The value may be 0 if the port is not assigned\n            to a VLAN.\n            \n            If vmVlanType is static, the port is always\n            assigned to a VLAN and the object may not be\n            set to 0.\n            \n            If vmVlanType is dynamic the object's value is\n            0 if the port is currently not assigned to a VLAN.\n            In addition, the object may be set to 0 only.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "vmPortStatus": {
                      "type": "string",
                      "description": "An indication of the current VLAN status of the port.\n            A status of inactive(1) indicates that a dynamic port\n            does not yet have a VLAN assigned, or a port is \n            assigned to a VLAN that is currently not active. A \n            status of active(2) indicates that the currently \n            assigned VLAN is active. A status of shutdown(3) \n            indicates that the port has been disabled as a result\n            of VQP shutdown response.",
                      "readOnly": true
                    },
                    "vmVlans": {
                      "type": "string",
                      "description": "The VLAN(s) the port is assigned to when the\n            port's vmVlanType is set to multiVlan.\n            This object is not instantiated if not applicable.\n            \n            The port is always assigned to one or more VLANs\n            and the object may not be set so that there are\n            no vlans assigned.\n            \n            Each octet within the value of this object specifies a\n            set of eight VLANs, with the first octet specifying\n            VLAN id 1 through 8, the second octet specifying VLAN\n            ids 9 through 16, etc.   Within each octet, the most\n            significant bit represents the lowest numbered\n            VLAN id, and the least significant bit represents the\n            highest numbered VLAN id.  Thus, each VLAN of the\n            port is represented by a single bit within the\n            value of this object.  If that bit has a value of\n            '1' then that VLAN is included in the set of\n            VLANs; the VLAN is not included if its bit has a\n            value of '0'.",
                      "format": "binary",
                      "readOnly": true
                    },
                    "vmVlans2k": {
                      "type": "string",
                      "description": "The VLAN(s) the port is assigned to when the\n            port's vmVlanType is set to multiVlan.\n            This object is not instantiated if not applicable.\n            \n            The port is always assigned to one or more VLANs\n            and the object may not be set so that there are\n            no vlans assigned.\n            \n            Each octet within the value of this object specifies a\n            set of eight VLANs, with the first octet specifying\n            VLAN id 1024 through 1031, the second octet specifying \n            VLAN ids 1032 through 1039, etc.  Within each octet, \n            the most significant bit represents the lowest \n            numbered VLAN id, and the least significant bit \n            represents the highest numbered VLAN id.  Thus, each \n            VLAN of the port is represented by a single bit within\n            the value of this object.  If that bit has a value of\n            '1' then that VLAN is included in the set of\n            VLANs; the VLAN is not included if its bit has a\n            value of '0'.",
                      "format": "binary",
                      "readOnly": true
                    },
                    "vmVlans3k": {
                      "type": "string",
                      "description": "The VLAN(s) the port is assigned to when the\n            port's vmVlanType is set to multiVlan.\n            This object is not instantiated if not applicable.\n            \n            The port is always assigned to one or more VLANs\n            and the object may not be set so that there are\n            no vlans assigned.\n            \n            Each octet within the value of this object specifies a\n            set of eight VLANs, with the first octet specifying\n            VLAN id 2048 through 2055, the second octet specifying \n            VLAN ids 2056 through 2063, etc.   Within each octet, \n            the most significant bit represents the lowest \n            numbered VLAN id, and the least significant bit \n            represents the highest numbered VLAN id.  Thus, each\n            VLAN of the port is represented by a single bit within\n            the value of this object.  If that bit has a value of\n            '1' then that VLAN is included in the set of\n            VLANs; the VLAN is not included if its bit has a\n            value of '0'.",
                      "format": "binary",
                      "readOnly": true
                    },
                    "vmVlans4k": {
                      "type": "string",
                      "description": "The VLAN(s) the port is assigned to when the\n            port's vmVlanType is set to multiVlan.\n            This object is not instantiated if not applicable.\n            \n            The port is always assigned to one or more VLANs\n            and the object may not be set so that there are\n            no vlans assigned.\n            \n            Each octet within the value of this object specifies a\n            set of eight VLANs, with the first octet specifying\n            VLAN id 3072 through 3079, the second octet specifying \n            VLAN ids 3040 through 3047, etc.   Within each octet, \n            the most significant bit represents the lowest \n            numbered VLAN id, and the least significant bit \n            represents the highest numbered VLAN id.  Thus, each\n            VLAN of the port is represented by a single bit within\n            the value of this object.  If that bit has a value of\n            '1' then that VLAN is included in the set of\n            VLANs; the VLAN is not included if its bit has a\n            value of '0'.",
                      "format": "binary",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "vmMembershipSummaryExtTable": {
            "type": "object",
            "description": "vmMembershipSummaryExtTable",
            "properties": {
              "vmMembershipSummaryExtEntry": {
                "type": "array",
                "description": "An entry (conceptual row) in the\n          vmMembershipSummaryExtTable.",
                "items": {
                  "type": "object",
                  "properties": {
                    "vmMembershipSummaryVlanIndex": {
                      "type": "string",
                      "description": "vmMembershipSummaryVlanIndex",
                      "x-yang-type": "leafref",
                      "readOnly": true
                    },
                    "vmMembershipPortRangeIndex": {
                      "type": "string",
                      "description": "The bridge port range index of this row.",
                      "x-yang-type": "cisco-tc:CiscoPortListRange",
                      "readOnly": true
                    },
                    "vmMembershipSummaryExtPorts": {
                      "type": "string",
                      "description": "The set of the device's member ports that belong\n            to the VLAN. It has the VLAN membership information\n            of up to 2k ports with the port number starting from\n            the information indicated in vmMembershipPortRangeIndex\n            object of the same row. For example, if the value\n            of vmMembershipPortRangeIndex is 'twoKto4K', the\n            port number indicated in this object starting from\n            2049 and ending to 4096. \n            \n            A port number is the value of dot1dBasePort for\n            the port in the BRIDGE-MIB (RFC 1493).",
                      "x-yang-type": "cisco-tc:CiscoPortList",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "vmVoiceVlanTable": {
            "type": "object",
            "description": "A table for configuring the Voice VLAN-ID\n        for the ports. An entry will exist for each\n        interface which supports Voice Vlan feature.",
            "properties": {
              "vmVoiceVlanEntry": {
                "type": "array",
                "description": "An entry (conceptual row) in the vmVoiceVlanTable.\n          Only interfaces which support Voice Vlan feature\n          are shown.",
                "items": {
                  "type": "object",
                  "properties": {
                    "ifIndex": {
                      "type": "string",
                      "description": "ifIndex",
                      "x-yang-type": "leafref",
                      "readOnly": true
                    },
                    "vmVoiceVlanId": {
                      "type": "integer",
                      "description": "The Voice Vlan ID (VVID) to which this\n            port belongs to.\n            \n            0    -    The CDP packets transmitting \n                      through this port would contain\n                      Appliance VLAN-ID TLV with value \n                      of 0. VoIP and related packets \n                      are expected to be sent and \n                      received with VLAN-id=0 and an \n                      802.1p priority. \n            \n            1..4094 - The CDP packets transmitting\n                      through this port would contain\n                      Appliance VLAN-ID TLV with N.\n                      VoIP and related packets are\n                      expected to be sent and received\n                      with VLAN-id=N and an 802.1p\n                      priority.\n            \n            4095  -   The CDP packets transmitting\n                      through this port would contain\n                      Appliance VLAN-ID TLV with value\n                      of 4095. VoIP and related packets\n                      are expected to be sent and \n                      received untagged without an \n                      802.1p priority.\n            \n            4096  -   The CDP packets transmitting \n                      through this port would not \n                      include Appliance VLAN-ID TLV; \n                      or, if the VVID is not supported \n                      on the port, this MIB object will\n                      not be configurable and will \n                      return 4096.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "vmVoiceVlanCdpVerifyEnable": {
                      "type": "boolean",
                      "description": "Enable or Disable the feature of CDP message\n            verification of voice VLANs.\n            \n            true   - The voice VLAN vmVoiceVlan is enabled \n                     only after CDP messages are received \n                     from the IP phone.\n            \n            false -  The voice VLAN vmVoiceVlan is enabled\n                     as soon as the IP phone interface is\n                     up. There is no verification needed \n                     from CDP messages from the IP phone.",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          }
        }
      },
      "CISCO-VLAN-MEMBERSHIP-MIB_object-1": {
        "type": "object",
        "description": "object-1",
        "properties": {
          "vmVmpsIpAddress": {
            "type": "string",
            "description": "vmVmpsIpAddress",
            "x-yang-type": "leafref",
            "readOnly": true
          }
        }
      },
      "CISCO-VLAN-MEMBERSHIP-MIB_vmVmpsEntry": {
        "type": "array",
        "description": "An entry (conceptual row) in the vmVmpsTable.",
        "items": {
          "type": "object",
          "properties": {
            "vmVmpsIpAddress": {
              "type": "string",
              "description": "The Ip Address of the VMPS.",
              "format": "inet:ipv4-address",
              "readOnly": true
            },
            "vmVmpsPrimary": {
              "type": "boolean",
              "description": "The status of the VMPS. Setting this value\n            to true will make this VMPS the primary server\n            and make the switch use this as the current server.\n            Setting this entry to true causes other rows\n            to transition to false. Attempting to write\n            a value of false after creation will result in\n            a return of bad value. Deleting an entry whose\n            value is true will result in the first entry\n            in the table being set to true.",
              "readOnly": true
            },
            "vmVmpsRowStatus": {
              "type": "string",
              "description": "The status of this conceptual row.",
              "x-yang-type": "snmpv2-tc:RowStatus",
              "readOnly": true
            }
          }
        }
      },
      "CISCO-VLAN-MEMBERSHIP-MIB_vmMembershipSummaryEntry": {
        "type": "array",
        "description": "An entry (conceptual row) in the\n          vmMembershipSummaryTable.",
        "items": {
          "type": "object",
          "properties": {
            "vmMembershipSummaryVlanIndex": {
              "type": "string",
              "description": "The VLAN id of the VLAN.",
              "x-yang-type": "cisco-vtp:VlanIndex",
              "readOnly": true
            },
            "vmMembershipSummaryMemberPorts": {
              "type": "string",
              "description": "The set of the device's member ports that belong\n            to the VLAN.\n            \n            Each octet within the value of this object specifies a\n            set of eight ports, with the first octet specifying ports\n            1 through 8, the second octet specifying ports 9\n            through 16, etc.   Within each octet, the most\n            significant bit represents the lowest numbered\n            port, and the least significant bit represents the\n            highest numbered port.  Thus, each port of the\n            VLAN is represented by a single bit within the\n            value of this object.  If that bit has a value of\n            '1' then that port is included in the set of\n            ports; the port is not included if its bit has a\n            value of '0'.\n            \n            A port number is the value of dot1dBasePort for\n            the port in the BRIDGE-MIB (RFC 1493).",
              "format": "binary",
              "readOnly": true
            },
            "vmMembershipSummaryMember2kPorts": {
              "type": "string",
              "description": "The set of the device's member ports that belong\n            to the VLAN. It has the VLAN membership information\n            of up to 2048 ports with the port number from 1 to \n            2048.\n            \n            Each octet within the value of this object specifies a\n            set of eight ports, with the first octet specifying \n            ports 1 through 8, the second octet specifying ports 9\n            through 16, etc.   Within each octet, the most\n            significant bit represents the lowest numbered\n            port, and the least significant bit represents the\n            highest numbered port.  Thus, each port of the\n            VLAN is represented by a single bit within the\n            value of this object.  If that bit has a value of\n            '1' then that port is included in the set of\n            ports; the port is not included if its bit has a\n            value of '0'.\n            \n            A port number is the value of dot1dBasePort for\n            the port in the BRIDGE-MIB (RFC 1493).",
              "x-yang-type": "cisco-tc:CiscoPortList",
              "readOnly": true
            }
          }
        }
      },
      "CISCO-VLAN-MEMBERSHIP-MIB_vmMembershipEntry": {
        "type": "array",
        "description": "An entry (conceptual row) in the vmMembershipTable.",
        "items": {
          "type": "object",
          "properties": {
            "ifIndex": {
              "type": "string",
              "description": "ifIndex",
              "x-yang-type": "leafref",
              "readOnly": true
            },
            "vmVlanType": {
              "type": "string",
              "description": "The type of VLAN membership assigned to this port.\n            A port with static vlan membership is assigned to a\n            single VLAN directly. A port with dynamic membership\n            is assigned a single VLAN based on content of packets\n            received on the port and via VQP queries to VMPS.\n            A port with multiVlan membership may be assigned to\n            one or more VLANs directly.\n            \n            A static or dynamic port membership is specified\n            by the value of vmVlan. A multiVlan port membership is\n            specified by the value of vmVlans.",
              "readOnly": true
            },
            "vmVlan": {
              "type": "integer",
              "description": "The VLAN id of the VLAN the port is assigned to\n            when vmVlanType is set to static or dynamic.\n            This object is not instantiated if not applicable.\n            \n            The value may be 0 if the port is not assigned\n            to a VLAN.\n            \n            If vmVlanType is static, the port is always\n            assigned to a VLAN and the object may not be\n            set to 0.\n            \n            If vmVlanType is dynamic the object's value is\n            0 if the port is currently not assigned to a VLAN.\n            In addition, the object may be set to 0 only.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "vmPortStatus": {
              "type": "string",
              "description": "An indication of the current VLAN status of the port.\n            A status of inactive(1) indicates that a dynamic port\n            does not yet have a VLAN assigned, or a port is \n            assigned to a VLAN that is currently not active. A \n            status of active(2) indicates that the currently \n            assigned VLAN is active. A status of shutdown(3) \n            indicates that the port has been disabled as a result\n            of VQP shutdown response.",
              "readOnly": true
            },
            "vmVlans": {
              "type": "string",
              "description": "The VLAN(s) the port is assigned to when the\n            port's vmVlanType is set to multiVlan.\n            This object is not instantiated if not applicable.\n            \n            The port is always assigned to one or more VLANs\n            and the object may not be set so that there are\n            no vlans assigned.\n            \n            Each octet within the value of this object specifies a\n            set of eight VLANs, with the first octet specifying\n            VLAN id 1 through 8, the second octet specifying VLAN\n            ids 9 through 16, etc.   Within each octet, the most\n            significant bit represents the lowest numbered\n            VLAN id, and the least significant bit represents the\n            highest numbered VLAN id.  Thus, each VLAN of the\n            port is represented by a single bit within the\n            value of this object.  If that bit has a value of\n            '1' then that VLAN is included in the set of\n            VLANs; the VLAN is not included if its bit has a\n            value of '0'.",
              "format": "binary",
              "readOnly": true
            },
            "vmVlans2k": {
              "type": "string",
              "description": "The VLAN(s) the port is assigned to when the\n            port's vmVlanType is set to multiVlan.\n            This object is not instantiated if not applicable.\n            \n            The port is always assigned to one or more VLANs\n            and the object may not be set so that there are\n            no vlans assigned.\n            \n            Each octet within the value of this object specifies a\n            set of eight VLANs, with the first octet specifying\n            VLAN id 1024 through 1031, the second octet specifying \n            VLAN ids 1032 through 1039, etc.  Within each octet, \n            the most significant bit represents the lowest \n            numbered VLAN id, and the least significant bit \n            represents the highest numbered VLAN id.  Thus, each \n            VLAN of the port is represented by a single bit within\n            the value of this object.  If that bit has a value of\n            '1' then that VLAN is included in the set of\n            VLANs; the VLAN is not included if its bit has a\n            value of '0'.",
              "format": "binary",
              "readOnly": true
            },
            "vmVlans3k": {
              "type": "string",
              "description": "The VLAN(s) the port is assigned to when the\n            port's vmVlanType is set to multiVlan.\n            This object is not instantiated if not applicable.\n            \n            The port is always assigned to one or more VLANs\n            and the object may not be set so that there are\n            no vlans assigned.\n            \n            Each octet within the value of this object specifies a\n            set of eight VLANs, with the first octet specifying\n            VLAN id 2048 through 2055, the second octet specifying \n            VLAN ids 2056 through 2063, etc.   Within each octet, \n            the most significant bit represents the lowest \n            numbered VLAN id, and the least significant bit \n            represents the highest numbered VLAN id.  Thus, each\n            VLAN of the port is represented by a single bit within\n            the value of this object.  If that bit has a value of\n            '1' then that VLAN is included in the set of\n            VLANs; the VLAN is not included if its bit has a\n            value of '0'.",
              "format": "binary",
              "readOnly": true
            },
            "vmVlans4k": {
              "type": "string",
              "description": "The VLAN(s) the port is assigned to when the\n            port's vmVlanType is set to multiVlan.\n            This object is not instantiated if not applicable.\n            \n            The port is always assigned to one or more VLANs\n            and the object may not be set so that there are\n            no vlans assigned.\n            \n            Each octet within the value of this object specifies a\n            set of eight VLANs, with the first octet specifying\n            VLAN id 3072 through 3079, the second octet specifying \n            VLAN ids 3040 through 3047, etc.   Within each octet, \n            the most significant bit represents the lowest \n            numbered VLAN id, and the least significant bit \n            represents the highest numbered VLAN id.  Thus, each\n            VLAN of the port is represented by a single bit within\n            the value of this object.  If that bit has a value of\n            '1' then that VLAN is included in the set of\n            VLANs; the VLAN is not included if its bit has a\n            value of '0'.",
              "format": "binary",
              "readOnly": true
            }
          }
        }
      },
      "CISCO-VLAN-MEMBERSHIP-MIB_vmMembershipSummaryExtEntry": {
        "type": "array",
        "description": "An entry (conceptual row) in the\n          vmMembershipSummaryExtTable.",
        "items": {
          "type": "object",
          "properties": {
            "vmMembershipSummaryVlanIndex": {
              "type": "string",
              "description": "vmMembershipSummaryVlanIndex",
              "x-yang-type": "leafref",
              "readOnly": true
            },
            "vmMembershipPortRangeIndex": {
              "type": "string",
              "description": "The bridge port range index of this row.",
              "x-yang-type": "cisco-tc:CiscoPortListRange",
              "readOnly": true
            },
            "vmMembershipSummaryExtPorts": {
              "type": "string",
              "description": "The set of the device's member ports that belong\n            to the VLAN. It has the VLAN membership information\n            of up to 2k ports with the port number starting from\n            the information indicated in vmMembershipPortRangeIndex\n            object of the same row. For example, if the value\n            of vmMembershipPortRangeIndex is 'twoKto4K', the\n            port number indicated in this object starting from\n            2049 and ending to 4096. \n            \n            A port number is the value of dot1dBasePort for\n            the port in the BRIDGE-MIB (RFC 1493).",
              "x-yang-type": "cisco-tc:CiscoPortList",
              "readOnly": true
            }
          }
        }
      },
      "CISCO-VLAN-MEMBERSHIP-MIB_vmVoiceVlanEntry": {
        "type": "array",
        "description": "An entry (conceptual row) in the vmVoiceVlanTable.\n          Only interfaces which support Voice Vlan feature\n          are shown.",
        "items": {
          "type": "object",
          "properties": {
            "ifIndex": {
              "type": "string",
              "description": "ifIndex",
              "x-yang-type": "leafref",
              "readOnly": true
            },
            "vmVoiceVlanId": {
              "type": "integer",
              "description": "The Voice Vlan ID (VVID) to which this\n            port belongs to.\n            \n            0    -    The CDP packets transmitting \n                      through this port would contain\n                      Appliance VLAN-ID TLV with value \n                      of 0. VoIP and related packets \n                      are expected to be sent and \n                      received with VLAN-id=0 and an \n                      802.1p priority. \n            \n            1..4094 - The CDP packets transmitting\n                      through this port would contain\n                      Appliance VLAN-ID TLV with N.\n                      VoIP and related packets are\n                      expected to be sent and received\n                      with VLAN-id=N and an 802.1p\n                      priority.\n            \n            4095  -   The CDP packets transmitting\n                      through this port would contain\n                      Appliance VLAN-ID TLV with value\n                      of 4095. VoIP and related packets\n                      are expected to be sent and \n                      received untagged without an \n                      802.1p priority.\n            \n            4096  -   The CDP packets transmitting \n                      through this port would not \n                      include Appliance VLAN-ID TLV; \n                      or, if the VVID is not supported \n                      on the port, this MIB object will\n                      not be configurable and will \n                      return 4096.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "vmVoiceVlanCdpVerifyEnable": {
              "type": "boolean",
              "description": "Enable or Disable the feature of CDP message\n            verification of voice VLANs.\n            \n            true   - The voice VLAN vmVoiceVlan is enabled \n                     only after CDP messages are received \n                     from the IP phone.\n            \n            false -  The voice VLAN vmVoiceVlan is enabled\n                     as soon as the IP phone interface is\n                     up. There is no verification needed \n                     from CDP messages from the IP phone.",
              "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-VLAN-MEMBERSHIP-MIB",
      "description": "MIB operations for CISCO-VLAN-MEMBERSHIP-MIB"
    }
  ],
  "externalDocs": {
    "description": "Cisco SNMP Object Navigator",
    "url": "https://snmp.cloudapps.cisco.com/Support/IOS/do/BrowseMIB.do"
  }
}
